@font-face {
  font-family: "Instrument Sans Variable";
  src: url("/assets/fonts/InstrumentSans-Variable.woff2") format("woff2-variations"), url("/assets/fonts/InstrumentSans-Variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #050705;
  --green: #16291c;
  --green-2: #203b29;
  --ivory: #f6f3ec;
  --paper: #fffdf8;
  --gold: #d7a546;
  --gold-deep: #8a5b00;
  --gold-soft: #ead6a3;
  --ink-soft: #2f342f;
  --sage: #b7c2b2;
  --line: rgba(5, 7, 5, 0.16);
  --line-light: rgba(246, 243, 236, 0.2);
  --muted: #5f655e;
  --measure: 72rem;
  --content: 44rem;
  --pad: clamp(1.75rem, 4vw, 3rem);
  --section: clamp(3.25rem, 6.5vw, 6rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: clamp(4rem, 4.5vw, 4.25rem);
  --header-margin: clamp(1rem, 2vw, 1.5rem);
  --header-offset: calc(var(--header-margin) * 2 + var(--header-h));
  --icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 2.5l6 5.5-6 5.5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--ivory);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Instrument Sans Variable", "Instrument Sans", "Segoe UI", -apple-system, sans-serif;
  font-size: clamp(1rem, 0.98rem + 0.12vw, 1.08rem);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.25rem, 9.5vw, 8.6rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.45rem, 6.4vw, 5.8rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  text-wrap: balance;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

main:focus {
  outline: none;
}

.container {
  width: min(100%, calc(var(--measure) + 2 * var(--pad)));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  position: relative;
  padding-block: var(--section);
}

.section--tight {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.theme-dark .eyebrow,
.theme-green .eyebrow {
  color: rgba(246, 243, 236, 0.62);
}

.theme-dark {
  background: var(--ink);
  color: var(--ivory);
}

.theme-green {
  background: var(--green);
  color: var(--ivory);
}

.theme-paper {
  background: var(--paper);
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.4rem);
  line-height: 1.5;
}

.theme-dark .lede,
.theme-green .lede {
  color: rgba(246, 243, 236, 0.82);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading h2 {
  max-width: 19ch;
  margin-bottom: 1.2rem;
}

.section-index {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.button {
  display: inline-flex;
  min-height: 3.375rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1.5px solid currentColor;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 160ms var(--ease);
}

.button::after {
  width: 0.85em;
  height: 0.85em;
  background-color: currentColor;
  content: "";
  -webkit-mask-image: var(--icon-chevron);
  mask-image: var(--icon-chevron);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
  transition: transform 180ms var(--ease);
}

.button:hover {
  background: var(--ink);
  color: var(--ivory);
}

.button:hover::after {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(1px);
}

.button--gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 1px 0 0 var(--gold-deep) inset, 0 10px 24px -12px rgba(138, 91, 0, 0.55);
}

.button--gold:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 0 0 var(--line) inset, 0 10px 24px -12px rgba(5, 7, 5, 0.35);
}

.button--gold:active {
  box-shadow: none;
}

.button--light {
  border-color: var(--ivory);
  color: var(--ivory);
}

.button--light:hover {
  background: var(--ivory);
  color: var(--ink);
}

.button--text {
  min-height: 2.75rem;
  justify-content: flex-start;
  border: 0;
  padding-inline: 0;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.35em;
}

.button--text::after {
  width: 0.7em;
  height: 0.7em;
}

.button--text:hover {
  background: transparent;
  color: inherit;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header — Starlink-style floating glass bar */

.site-header {
  position: fixed;
  z-index: 100;
  top: var(--header-margin);
  left: 0;
  right: 0;
  width: min(calc(100% - var(--header-margin) * 2), calc(var(--measure) + 2 * var(--pad)));
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(9, 14, 11, 0.94);
  color: var(--ivory);
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.4);
  transition:
    background-color 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(5, 7, 5, 0.08);
  background: rgba(246, 243, 236, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 34px -18px rgba(5, 7, 5, 0.22);
}

.site-header .container {
  padding-inline: 0;
}

.nav-shell {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: clamp(1rem, 2.4vw, 1.5rem);
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  text-decoration: none;
}

.brand__wordmark-stack {
  position: relative;
  width: 140px;
  aspect-ratio: 2354 / 249;
}

.brand__wordmark {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: opacity 220ms ease;
}

.brand__wordmark--light {
  opacity: 1;
}

.brand__wordmark--dark {
  opacity: 0;
}

.site-header.is-scrolled .brand__wordmark--light {
  opacity: 0;
}

.site-header.is-scrolled .brand__wordmark--dark {
  opacity: 1;
}

.nav-open .site-header.is-scrolled .brand__wordmark--light {
  opacity: 1;
}

.nav-open .site-header.is-scrolled .brand__wordmark--dark {
  opacity: 0;
}

.nav-cta {
  min-height: 2.875rem;
  padding-inline: 1.15rem;
  font-size: 0.8rem;
}

.nav-cta::after {
  display: none;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.6rem);
}

.nav-panel__primary {
  display: contents;
}

.nav-panel__secondary {
  display: none;
}

.nav-panel a:not(.button) {
  position: relative;
  padding-block: 0.9rem;
  color: currentColor;
  font-size: 0.77rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-panel a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.nav-panel a:not(.button):hover::after,
.nav-panel a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-panel .button {
  min-height: 2.7rem;
  padding: 0.6rem 0.95rem;
  font-size: 0.76rem;
}

.nav-panel .nav-cta::after {
  display: none;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  padding: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-toggle__line,
.nav-toggle span {
  position: absolute;
  left: 0.875rem;
  width: 1.25rem;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 240ms var(--ease),
    top 240ms var(--ease);
}

.nav-toggle__line:first-child,
.nav-toggle span:first-child {
  top: 1.3rem;
}

.nav-toggle__line:last-child,
.nav-toggle span:last-child {
  top: 1.7rem;
}

.nav-open .nav-toggle__line:first-child,
.nav-open .nav-toggle span:first-child {
  top: 1.45rem;
  transform: rotate(45deg);
}

.nav-open .nav-toggle__line:last-child,
.nav-open .nav-toggle span:last-child {
  top: 1.45rem;
  transform: rotate(-45deg);
}

.nav-open .site-header {
  background: var(--ink);
  color: var(--ivory);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-offset) + 1.5rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-offset) - 1.5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero-copy {
  display: flex;
  max-width: 38rem;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem) 0;
  flex-direction: column;
  justify-content: center;
}

.hero-origin {
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
  color: rgba(246, 243, 236, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-origin span {
  color: var(--ivory);
  font-weight: 600;
}

.hero h1 {
  max-width: 10.5ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.5rem, 6vw, 5.7rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.82em;
  line-height: 1.07;
}

.hero-outcomes {
  max-width: 34rem;
  margin: 1.4rem 0 1rem;
  color: var(--ivory);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero .lead {
  max-width: 33rem;
  margin-bottom: 1.3rem;
  color: rgba(246, 243, 236, 0.68);
  font-size: clamp(0.98rem, 0.92rem + 0.28vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof {
  margin: clamp(1.6rem, 2.6vw, 2.4rem) 0 0;
  color: rgba(246, 243, 236, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-system {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4.5rem);
}

.operating-spine {
  position: relative;
  min-height: 40rem;
}

.operating-spine__kicker,
.operating-spine__coda {
  position: absolute;
  z-index: 2;
  left: calc(50% + 2.25rem);
  margin: 0;
  color: rgba(246, 243, 236, 0.5);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.operating-spine__kicker {
  top: 2rem;
}

.operating-spine__coda {
  bottom: 0.5rem;
  color: var(--ivory);
}

.operating-spine__line {
  position: absolute;
  z-index: 1;
  top: 4.5rem;
  bottom: 3.5rem;
  left: calc(50% + 2.25rem);
  width: 1px;
  background: linear-gradient(transparent, var(--gold) 16%, var(--gold) 84%, transparent);
  transform-origin: top;
  animation: spine-line-reveal 850ms var(--ease) 160ms both;
}

.operating-spine__line::before {
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 10px 2px var(--gold-soft);
  content: "";
  opacity: 0;
  animation: spine-glint 900ms var(--ease) 1050ms 1;
}

.operating-spine__line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.operating-spine__layer {
  position: relative;
  position: absolute;
  z-index: 2;
  display: grid;
  width: 78%;
  min-height: 7.4rem;
  align-items: end;
  border-bottom: 1px solid rgba(246, 243, 236, 0.25);
  padding: 1.4rem 0;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  opacity: 0;
  animation: spine-layer-reveal 650ms var(--ease) both;
}

.operating-spine__layer::after {
  position: absolute;
  bottom: -0.34rem;
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.operating-spine__layer:nth-of-type(2) {
  top: 4.6rem;
  left: 3%;
  animation-delay: 260ms;
}

.operating-spine__layer:nth-of-type(3) {
  top: 12.8rem;
  right: 0;
  animation-delay: 360ms;
}

.operating-spine__layer:nth-of-type(4) {
  top: 21rem;
  left: 0;
  animation-delay: 460ms;
}

.operating-spine__layer:nth-of-type(5) {
  top: 29.2rem;
  right: 4%;
  animation-delay: 560ms;
}

.operating-spine__layer:nth-of-type(even)::after {
  right: -0.34rem;
}

.operating-spine__layer:nth-of-type(odd)::after {
  left: -0.34rem;
}

.operating-spine__layer strong {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.045em;
}

.operating-spine__layer span {
  color: rgba(246, 243, 236, 0.52);
  font-size: 0.76rem;
  white-space: nowrap;
}

@keyframes spine-line-reveal {
  from {
    transform: scaleY(0);
  }
}

@keyframes spine-glint {
  0% {
    top: 0%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes spine-layer-reveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.save-data .operating-spine__line,
.save-data .operating-spine__layer,
.save-data .operating-spine__line::before {
  opacity: 1;
  animation: none;
}

/* Signal connector — hero → business friction → operating layer */

.signal-connector {
  position: relative;
  display: flex;
  height: clamp(2rem, 3.5vw, 3rem);
  align-items: center;
  justify-content: center;
}

.signal-connector__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}

.hero .signal-connector {
  background: var(--ink);
}

.hero .signal-connector__line {
  background: linear-gradient(rgba(246, 243, 236, 0.05), var(--gold));
}

.signal-connector__node {
  position: relative;
  z-index: 1;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--paper);
}

.hero .signal-connector__node {
  box-shadow: 0 0 0 6px var(--ink);
}

.js .signal-connector {
  opacity: 0;
  transition: opacity 480ms var(--ease);
}

.js .signal-connector.is-visible {
  opacity: 1;
}

.js .signal-connector .signal-connector__line {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 520ms var(--ease) 80ms;
}

.js .signal-connector.is-visible .signal-connector__line {
  transform: scaleY(1);
}

/* Four states, one system */

.states {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(215, 165, 70, 0.055), transparent 70%),
    var(--ink);
  color: var(--ivory);
}

.states__intro {
  margin: 0 0 clamp(1.25rem, 3.5vw, 2rem);
  text-align: center;
}

.states__kicker {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.states__track {
  position: relative;
  height: 120svh;
}

.states__stage {
  position: sticky;
  top: 0;
  display: flex;
  height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.states__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  padding-left: 2rem;
}

.states__fill {
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(1);
  transform-origin: top;
}

.js .states__fill {
  transform: scaleY(var(--progress, 0));
  transition: transform 520ms var(--ease);
}

.states__node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.states__dot {
  width: 0.62rem;
  height: 0.62rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 243, 236, 0.4);
  background: var(--ink);
  transition:
    border-color 320ms var(--ease),
    background-color 320ms var(--ease),
    transform 320ms var(--ease);
}

.states__name {
  font-size: clamp(1.4rem, 3.6vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ivory);
  transition: color 340ms var(--ease);
}

.js .states__name {
  color: rgba(246, 243, 236, 0.4);
}

.js .states__node.is-active .states__name {
  color: var(--ivory);
}

.js .states__node.is-active .states__dot {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.15);
}

.js .states__node.is-done .states__name {
  color: rgba(246, 243, 236, 0.72);
}

.js .states__node.is-done .states__dot {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1);
}

.states__coda {
  margin: 0;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.js .states__coda {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}

.js .states__track.is-resolved .states__coda {
  opacity: 1;
  transform: none;
}

.states__triggers {
  position: absolute;
  top: 41svh;
  left: 0;
  right: 0;
  height: 41svh;
  display: flex;
  flex-direction: column;
}

.states__triggers span {
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {
  .states__track {
    height: auto;
  }

  .states__stage {
    position: static;
    height: auto;
    padding-block: clamp(2rem, 5vw, 3.5rem);
  }

  .states__triggers {
    display: none;
  }

  .js .states__fill {
    transform: scaleY(1);
    transition: none;
  }

  .js .states__name,
  .js .states__node.is-active .states__name,
  .js .states__node.is-done .states__name {
    color: var(--ivory);
  }

  .js .states__dot,
  .js .states__node.is-active .states__dot,
  .js .states__node.is-done .states__dot {
    border-color: var(--gold);
    background: var(--gold);
    transform: none;
  }

  .js .states__coda {
    opacity: 1;
    transform: none;
  }
}

/* Business friction */

.friction-layout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.friction-copy h2 {
  max-width: 20ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
}

.friction-closing {
  margin-top: 1.5rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.friction-visual {
  position: relative;
  display: flex;
  height: auto;
  min-height: 10rem;
  align-items: center;
  justify-content: center;
}

.friction-map {
  display: block;
  width: 100%;
  height: auto;
}

.friction-map img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .friction-visual {
    height: auto;
    margin-top: 1.25rem;
  }

  .friction {
    padding-bottom: clamp(2.25rem, 6vw, 3.75rem);
  }
}

/* Time / workflow */

.time-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.time-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
}

.time-copy .button {
  margin-top: 1rem;
}

.workflow {
  border: 1px solid var(--line);
  background: var(--ivory);
}

.workflow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow__body {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.manual-steps {
  display: grid;
  margin-bottom: 2.2rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.manual-step {
  min-height: 6.5rem;
  border: 1px solid var(--line);
  padding: 0.9rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.manual-step b {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: 0.7rem;
}

.workflow__arrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow__arrow::before,
.workflow__arrow::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.connected-flow {
  display: grid;
  min-height: 7rem;
  align-items: center;
  border: 1px solid var(--green);
  padding: 1.2rem;
  background: var(--green);
  color: var(--ivory);
  grid-template-columns: repeat(5, 1fr);
}

.connected-flow span {
  position: relative;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
}

.connected-flow span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -0.25rem;
  color: var(--gold);
  content: "→";
  transform: translate(50%, -50%);
}

.value-line {
  display: grid;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.value-line span {
  padding: 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.value-line span + span {
  border-left: 1px solid var(--line);
}

/* Continuity */

.continuity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.continuity-copy h2 {
  max-width: 11ch;
}

.continuity-copy h2 span {
  color: var(--gold);
}

.continuity-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, 1fr);
}

.continuity-item {
  min-height: 11.5rem;
  border-bottom: 1px solid var(--line-light);
  padding: 1.6rem 1.2rem;
}

.continuity-item:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.continuity-item img,
.capability img {
  width: 2rem;
  height: 2rem;
  margin-bottom: 2rem;
  filter: invert(76%) sepia(34%) saturate(819%) hue-rotate(358deg) brightness(88%);
}

.continuity-item p {
  margin-bottom: 0;
  color: rgba(246, 243, 236, 0.75);
  font-size: 0.9rem;
}

/* Security */

.security-shell {
  border-top: 1px solid var(--line-light);
}

.security-head {
  display: grid;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.security-head h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.security-head__copy {
  align-self: end;
}

.security-head__copy p:first-child {
  color: var(--gold-soft);
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  font-weight: 620;
  letter-spacing: -0.03em;
}

.security-head__copy p:last-child {
  color: rgba(246, 243, 236, 0.72);
}

.security-head__risks {
  color: rgba(246, 243, 236, 0.7);
  font-size: 0.9rem;
}

.control-statement {
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.control-statement p {
  max-width: 14ch;
  margin: 0 auto 2.5rem;
  font-size: clamp(2.25rem, 6.7vw, 6.5rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.control-statement p span {
  color: var(--gold);
}

/* Presence */

.presence-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.presence-layout h2 {
  max-width: 10ch;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  min-height: 7.5rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-block: 1rem;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}

.capability img {
  margin-bottom: 0;
  filter: none;
}

.capability h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Engagement */

.engagement-grid {
  display: grid;
  border: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.engagement {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 1rem;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 750;
  letter-spacing: -0.01em;
  text-align: center;
}

.engagement:last-child {
  border-right: 0;
}

/* Projects */

.project-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  position: relative;
  border-bottom: 1px solid var(--line-light);
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.project-card + .project-card {
  border-left: 1px solid var(--line-light);
}

.project-card__top {
  display: flex;
  justify-content: space-between;
  color: rgba(246, 243, 236, 0.52);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__visual {
  display: flex;
  width: 3.2rem;
  height: 3.2rem;
  align-items: center;
  justify-content: center;
  margin: 1.2rem 0 1rem;
}

.project-card__visual img {
  width: 2.1rem;
  height: 2.1rem;
  filter: invert(76%) sepia(34%) saturate(819%) hue-rotate(358deg) brightness(88%);
}

.project-card h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.project-card p {
  margin-bottom: 0;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.88rem;
}

.proof-bar {
  display: grid;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.7fr 1.3fr;
}

.proof-bar__title {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.proof-bar__title h2 {
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.proof-list {
  display: grid;
}

.proof-item {
  display: grid;
  align-items: center;
  padding: 1.2rem clamp(1.5rem, 4vw, 3.2rem);
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
}

.proof-item + .proof-item {
  border-top: 1px solid var(--line);
}

.proof-item h3 {
  margin-bottom: 0.25rem;
}

.proof-item p,
.proof-item span {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Technology independence */

.technology-independence {
  background: var(--ivory);
}

.independence-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.technology-independence h2 {
  max-width: 10ch;
}

.technology-independence h2 span {
  color: var(--gold-deep);
}

.ecosystem-note {
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.independence-steps {
  border-top: 1px solid var(--line);
}

.independence-steps article {
  display: grid;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
  grid-template-columns: minmax(8rem, 0.9fr) minmax(11rem, 1.1fr);
  gap: 1.2rem;
}

.independence-steps h3 {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.independence-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Institutional */

.institutional {
  overflow: hidden;
}

.institutional::after {
  position: absolute;
  right: -9rem;
  bottom: -17rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(215, 165, 70, 0.22);
  border-radius: 50%;
  content: "";
}

.institutional-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.institutional h2 {
  max-width: 20ch;
  margin-bottom: 1.75rem;
}

.institutional h2 span {
  color: var(--gold);
}

.institutional-capabilities {
  align-self: end;
  border-top: 1px solid var(--line-light);
}

.institutional-capabilities span {
  display: block;
  border-bottom: 1px solid var(--line-light);
  padding: 1rem 0;
  color: rgba(246, 243, 236, 0.76);
  font-size: 0.85rem;
}

.institutional-support {
  margin-top: 1.5rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
}

/* Venture */

.venture-layout {
  display: grid;
  align-items: end;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.venture-layout h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.venture-layout > div:first-child > p:last-child {
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.76rem;
}

.venture-journey {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(5, 1fr);
}

.venture-journey span {
  display: flex;
  min-height: 7rem;
  padding: 0.9rem;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(246, 243, 236, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.venture-journey span + span {
  border-left: 1px solid var(--line-light);
}

/* Gambia field layer */

.field-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.field-grid h2 {
  max-width: 8ch;
}

.field-map {
  margin: 0;
  border: 1px solid var(--line-light);
  padding: clamp(1rem, 3vw, 2rem);
  background: #0b0d0b;
}

.field-map svg {
  width: 100%;
  overflow: visible;
}

.field-map__land {
  fill: #11150f;
  stroke: rgba(215, 165, 70, 0.68);
  stroke-width: 2;
}

.field-map__river {
  fill: none;
  stroke: rgba(234, 214, 163, 0.35);
  stroke-width: 20;
  stroke-linecap: round;
}

.field-map__route {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-dasharray: 12 14;
  stroke-linecap: round;
  animation: map-flow 18s linear infinite;
}

.field-map__nodes circle {
  fill: var(--gold);
  stroke: var(--ivory);
  stroke-width: 3;
}

.field-map figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  border-top: 1px solid var(--line-light);
  padding-top: 0.9rem;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes map-flow {
  to {
    stroke-dashoffset: -260;
  }
}

/* Insights */

.insight-hub {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.insight-section__kicker {
  margin: 0 0 1.1rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-start-here {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.insight-start-here__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.insight-lead {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.insight-lead__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green);
}

.insight-lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.insight-lead:hover .insight-lead__media img {
  transform: scale(1.02);
}

.insight-lead__body {
  display: block;
  padding: clamp(1.1rem, 2.5vw, 1.8rem);
}

.insight-lead__body h3 {
  margin: 0.6rem 0 0.6rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.insight-lead__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.insight-topic-nav {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insight-topic-nav::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2.5rem;
  background: linear-gradient(to right, transparent, var(--ivory));
  content: "";
  pointer-events: none;
}

.insight-topic-nav__scroll {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  overflow-x: auto;
  padding: 1rem var(--pad);
  margin-inline: calc(var(--pad) * -1);
  -webkit-overflow-scrolling: touch;
}

.insight-topic-nav a {
  flex: 0 0 auto;
  padding-block: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.insight-topic-nav a:hover,
.insight-topic-nav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--gold-deep);
}

.insight-topic {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.insight-topic__rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.insight-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}

.insight-row__media {
  display: block;
  flex: 0 0 112px;
  width: 112px;
  height: 72px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green);
}

.insight-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-row__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}

.insight-row__meta {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insight-row__title {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 901px) {
  .insight-start-here__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }

  .insight-start-here__grid .insight-row {
    border-top: 0;
  }

  .insight-start-here__grid .insight-row:first-of-type {
    border-top: 0;
  }

  .insight-topic__rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    border-top: 0;
  }

  .insight-row {
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  /* Insights hub only: larger editorial category index. Scoped away from
     the article page's "Related insights" panel, which keeps its compact
     treatment (Insights article pages are frozen). */
  .insight-hub .insight-topic .insight-section__kicker {
    margin-bottom: 1.5rem;
    color: var(--ink);
    font-size: clamp(2.1rem, 2.6vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .insight-hub .insight-topic .insight-topic__rows {
    column-gap: clamp(2.75rem, 4vw, 4rem);
    row-gap: clamp(2rem, 3vw, 3rem);
  }

  .insight-hub .insight-topic .insight-row {
    align-items: flex-start;
    padding-block: 0.5rem;
  }

  .insight-hub .insight-topic .insight-row__title {
    font-size: clamp(1.375rem, 1.6vw, 1.75rem);
    line-height: 1.25;
  }

  .insight-hub .insight-topic .insight-row__meta {
    font-size: 0.85rem;
  }
}

/* Article: breadcrumb, byline, hero credit, end-of-article CTA and related */

.article-breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.article-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: var(--ink);
}

.article-byline {
  margin: 0.75rem 0 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.article-hero {
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.article-cta {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.article-cta__kicker {
  margin: 0 0 0.6rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-cta h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.article-related {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.article-related .insight-topic__rows {
  border-top: 1px solid var(--line);
}

.table-scroll {
  overflow-x: auto;
  margin: 1.75rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table-scroll th,
.table-scroll td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table-scroll thead th {
  background: var(--paper);
  font-weight: 700;
}

@media (max-width: 640px) {
  .table-scroll {
    scroll-snap-type: x proximity;
  }
}

/* Company */

.company-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.company-intro h2 {
  max-width: 10ch;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.person {
  background: var(--paper);
}

.person img {
  width: 100%;
  aspect-ratio: 15 / 16;
  object-fit: cover;
  object-position: center top;
}

.person__body {
  padding: 1.25rem;
}

.person h3 {
  margin-bottom: 0.35rem;
}

.person__role {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.person p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.person p + p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
}

.linkedin-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.linkedin-link:hover {
  color: var(--ink);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
}

.team-card picture,
.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 15 / 16;
  object-fit: cover;
  object-position: center top;
}

.team-card__body {
  flex-grow: 1;
  padding: 1rem;
}

.team-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.team-card__role {
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.ownership-section {
  background: var(--ivory);
}

.ownership {
  display: grid;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.ownership__statement {
  padding: clamp(1.5rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 4rem) 0;
}

.ownership__statement h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

.ownership__points {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.ownership__points li {
  display: flex;
  min-height: 6.5rem;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.ownership__points li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.ownership__points li:last-child {
  border-bottom: 0;
}

.ownership__points li:last-child:nth-child(odd) {
  border-right: 0;
  grid-column: 1 / -1;
}

/* Final CTA and footer */

.final-cta {
  overflow: hidden;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.final-cta h2 {
  max-width: 24ch;
  margin-bottom: 1.2rem;
}

.final-cta__action {
  align-self: end;
}

.final-cta__topics {
  margin-bottom: 1.5rem;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.8rem;
  line-height: 1.8;
}

.contact-line {
  display: flex;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.75rem;
}

.contact-line a {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line-light);
  padding-block: 3.5rem 1.5rem;
  background: var(--ink);
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.footer-brand img {
  width: 11.5rem;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  max-width: 22rem;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.82rem;
}

.footer-column h3 {
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.79rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ivory);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.2rem;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.7rem;
}

/* Inner pages */

.page-hero {
  min-height: 72svh;
  padding-top: calc(var(--header-offset) + 1rem);
  background: var(--green);
  color: var(--ivory);
}

.page-hero__inner {
  display: flex;
  min-height: calc(72svh - var(--header-offset) - 1rem);
  padding-block: clamp(4rem, 7vw, 6.5rem);
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  max-width: 30ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.trust-visual__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.trust-visual__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
}

.trust-visual__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-visual__step {
  margin: 0.6rem 0 0;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .trust-visual__grid {
    grid-template-columns: 1fr;
  }
}

.page-hero__lede {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: rgba(246, 243, 236, 0.82);
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
}

.page-section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.page-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.page-grid__title h2 {
  position: sticky;
  top: 8rem;
  max-width: 27ch;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
}

.page-list {
  border-top: 1px solid var(--line);
}

.page-list article {
  border-bottom: 1px solid var(--line);
  padding-block: 1.4rem;
}

.page-list h3 {
  margin-bottom: 0.55rem;
}

.page-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.theme-dark .page-list p,
.theme-green .page-list p {
  color: rgba(246, 243, 236, 0.75);
}

.page-list p a {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
}

.process-line {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(5, 1fr);
}

.process-step {
  min-height: 13rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 1.4rem;
}

.process-step span {
  display: block;
  margin-bottom: 4rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
}

.theme-dark .process-step span,
.theme-green .process-step span {
  color: var(--gold);
}

.process-step h3 {
  font-size: 1.15rem;
}

.article-shell {
  max-width: 48rem;
  margin-inline: auto;
  padding: clamp(8rem, 13vw, 12rem) var(--pad) clamp(5rem, 9vw, 8rem);
  overflow-wrap: anywhere;
}

.article-shell h1 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.article-shell h2 {
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.article-shell h3 {
  margin-top: 2.5rem;
}

.article-shell p,
.article-shell li {
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-shell ul,
.article-shell ol {
  margin: 1.4rem 0;
  padding-left: 1.4rem;
}

.article-shell li {
  margin-bottom: 0.6rem;
}

.article-shell li:last-child {
  margin-bottom: 0;
}

.article-shell figure {
  margin: 2.5rem 0;
}

.article-shell figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.article-shell code {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: var(--paper);
  font-size: 0.92em;
}

.article-shell a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

.article-shell img {
  width: 100%;
  margin: 0;
}

/* Progressive enhancement */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav-panel {
    gap: 0.9rem;
  }

  .nav-panel a:not(.button) {
    font-size: 0.71rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --section: clamp(3.5rem, 10vw, 5.5rem);
    --header-h: 3.75rem;
    --header-margin: 0.75rem;
  }

  .brand__wordmark-stack {
    width: 114px;
  }

  .brand {
    min-width: 3rem;
    min-height: 3rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: calc(var(--header-offset) + 0.75rem) var(--pad) calc(env(safe-area-inset-bottom, 0px) + 1.75rem);
    background:
      radial-gradient(ellipse 60% 42% at 88% 0%, rgba(215, 165, 70, 0.12), transparent 62%),
      var(--ink);
    color: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 200ms var(--ease),
      transform 200ms var(--ease);
  }

  .nav-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-panel__primary {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
  }

  .nav-panel a:not(.button) {
    border-bottom: 1px solid rgba(246, 243, 236, 0.14);
    padding: 0.95rem 0;
    font-size: clamp(1.35rem, 5vw, 1.9rem);
    font-weight: 600;
    letter-spacing: -0.03em;
  }

  .nav-panel__secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.5rem;
    margin-top: 1.5rem;
  }

  .nav-panel__secondary a:not(.button) {
    border-bottom: 0;
    padding: 0.4rem 0;
    color: rgba(246, 243, 236, 0.58);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  .nav-panel__secondary a.nav-panel__lang {
    margin-left: auto;
    color: var(--gold-soft);
  }

  .nav-panel .button {
    min-height: 3.4rem;
    margin-top: 1.75rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
    padding-left: 0;
    min-height: 0;
    padding-block: 2.75rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 13vw, 6.5rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .states__track {
    height: 134svh;
  }

  .states__triggers {
    height: 34svh;
  }

  .states__rail {
    padding-left: 1.5rem;
  }

  .states__name {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .protected-chapter__track {
    height: 139svh;
  }

  .protected-chapter__triggers {
    height: 57svh;
  }

  .protected-chapter__stage {
    align-content: end;
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .protected-chapter__sequence {
    gap: 1rem 1.5rem;
  }

  .operating-spine {
    min-height: 18rem;
  }

  .operating-spine__line {
    top: 2.5rem;
    bottom: 1.25rem;
    left: 1.7rem;
  }

  .operating-spine__kicker,
  .operating-spine__coda {
    left: 3.35rem;
    transform: none;
  }

  .operating-spine__kicker {
    top: 1.2rem;
  }

  .operating-spine__coda {
    bottom: 0;
  }

  .operating-spine__layer {
    right: auto !important;
    left: 3.35rem !important;
    width: calc(100% - 3.35rem);
    min-height: 3.35rem;
    padding: 0.55rem 0;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .operating-spine__layer:nth-of-type(2) {
    top: 2.6rem;
  }

  .operating-spine__layer:nth-of-type(3) {
    top: 5.95rem;
  }

  .operating-spine__layer:nth-of-type(4) {
    top: 9.3rem;
  }

  .operating-spine__layer:nth-of-type(5) {
    top: 12.65rem;
  }

  .operating-spine__layer::after {
    right: auto !important;
    left: -2rem !important;
  }

  .operating-spine__layer strong {
    font-size: 1.08rem;
  }

  .operating-spine__layer span {
    display: none;
  }

  .problems-layout,
  .time-layout,
  .continuity-layout,
  .security-head,
  .presence-layout,
  .independence-layout,
  .institutional-layout,
  .venture-layout,
  .field-grid,
  .company-layout,
  .final-cta__inner,
  .page-grid,
  .friction-layout,
  .chapter,
  .partner-layout,
  .reality-layout,
  .project-pair {
    grid-template-columns: 1fr;
  }

  .chapter--reverse .chapter__media {
    order: 0;
  }

  .chapter {
    padding-block: 2rem;
  }

  .friction-visual {
    height: clamp(10rem, 22vw, 13.75rem);
    margin-top: 0.5rem;
  }

  .partner-sequence {
    margin-top: 1rem;
  }

  .problems-intro {
    position: static;
  }

  .problems-intro h2 {
    max-width: 12ch;
  }

  .security-head {
    gap: 2rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card + .project-card {
    border-left: 0;
  }

  .independence-steps article {
    grid-template-columns: 1fr 1fr;
  }

  .independence-steps article p {
    grid-column: 2;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-bar__title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
  }

  .ownership {
    grid-template-columns: 1fr;
  }

  .ownership__statement {
    padding-right: 0;
  }

  .ownership__points {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 2rem;
  }

  .page-grid__title h2 {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .hero-copy {
    padding-block: 1.75rem 1rem;
  }

  .hero-origin {
    margin-bottom: 0.9rem;
  }

  .hero h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(2.6rem, 13vw, 3.2rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .hero .lead {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-meta {
    margin-top: 1rem;
  }

  .problem {
    min-height: 0;
  }

  .manual-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .connected-flow {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .connected-flow span {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(246, 243, 236, 0.15);
  }

  .connected-flow span:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -0.25rem;
    transform: translate(50%, 50%) rotate(90deg);
  }

  .value-line {
    grid-template-columns: 1fr;
  }

  .value-line span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .continuity-grid {
    grid-template-columns: 1fr;
  }

  .continuity-item {
    min-height: 10.5rem;
  }

  .continuity-item:nth-child(odd) {
    border-right: 0;
  }

  .continuity-item img {
    margin-bottom: 1.5rem;
  }

  .engagement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engagement {
    min-height: 4.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.9rem;
    font-size: 0.88rem;
  }

  .engagement:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .engagement:nth-child(n + 3) {
    border-bottom: 0;
  }

  .proof-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .person img {
    max-height: 360px;
  }

  .independence-steps article {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .independence-steps article p {
    grid-column: auto;
  }

  .venture-journey {
    grid-template-columns: 1fr;
  }

  .venture-journey span {
    min-height: 4.5rem;
    flex-direction: row;
    align-items: center;
  }

  .venture-journey span + span {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .ownership__points {
    grid-template-columns: 1fr;
  }

  .ownership__points li {
    min-height: 4.5rem;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 8rem;
  }

  .process-step span {
    margin-bottom: 1.5rem;
  }
}

/* Homepage final compression: 9-act layout helpers */

/* Homepage final compression: 9-act layout and polish */

h1,
h2,
h3 {
  text-wrap: balance;
}

/* Four outcome chapters */

.chapter {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(4.5rem, 7vw, 7.5rem);
  row-gap: clamp(2.5rem, 6vw, 4rem);
  padding-block: clamp(1.75rem, 4vw, 3.25rem);
  border-top: 1px solid var(--line);
}

.chapter--reverse .chapter__media {
  order: 2;
}

.chapter__label {
  margin-bottom: 0.7rem;
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
}

.chapter__copy {
  max-width: 32.5rem;
}

.chapter__copy h3 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

.chapter__copy p {
  max-width: 32rem;
  color: var(--muted);
}

.chapter__support {
  font-weight: 700;
  color: var(--ink);
}

.chapter__flow {
  display: flex;
  flex-direction: column;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  max-width: 30rem;
}

.chapter__flow li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.chapter__flow-label {
  flex: 0 0 4.75rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chapter__flow p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.chapter__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  gap: 0.65rem 1.1rem;
  list-style: none;
}

.chapter__points li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.chapter__points li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4rem;
  height: 1px;
  background: var(--gold-deep);
  content: "";
}

.chapter__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.chapter__media img,
.chapter__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.chapter__media img {
  object-fit: cover;
}

.chapter__media--found {
  aspect-ratio: 1600 / 882;
}

.chapter__media--faster {
  aspect-ratio: 840 / 1050;
  max-width: 23rem;
  margin-inline: auto;
}

.chapter__media--online {
  aspect-ratio: 16 / 9;
  max-width: 30rem;
}

@media (max-width: 900px) {
  .chapter__media--online {
    aspect-ratio: 4 / 5;
    max-width: 19rem;
    margin-inline: auto;
  }
}

@media (min-width: 901px) {
  .chapter__points {
    display: flex;
    flex-wrap: wrap;
  }
}

/* Get found visual */
.found-card {
  width: min(22rem, 82%);
  border-radius: 10px;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: 0 20px 40px -28px rgba(5, 7, 5, 0.25);
}

.found-card__bar {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.found-card__bar span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--line);
}

.found-card__row {
  height: 0.6rem;
  margin-bottom: 0.6rem;
  border-radius: 4px;
  background: var(--line);
}

.found-card__row--short {
  width: 60%;
}

.found-card__row--map {
  display: flex;
  height: auto;
  gap: 0.5rem;
  background: none;
}

.found-card__pin {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
}

.found-card__pin--muted {
  background: var(--sage);
}

.found-card__wa {
  display: inline-flex;
  margin-top: 0.7rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 700;
}

/* Work faster visual */
.faster-card {
  width: min(22rem, 82%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faster-card__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.faster-card__mark {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--line);
}

.faster-card__row--done .faster-card__mark {
  border-color: var(--gold);
  background: var(--gold);
}

.faster-card__row--active .faster-card__mark {
  border-color: var(--gold);
}

.faster-card__label {
  height: 0.55rem;
  flex: 1;
  border-radius: 4px;
  background: var(--line);
}

.faster-card__row--active {
  border-color: var(--gold);
}

/* Stay online visual */
.online-card {
  display: flex;
  width: min(22rem, 82%);
  align-items: center;
  justify-content: space-between;
}

.online-card__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.online-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  height: 1.6rem;
}

.online-card__bars i {
  width: 0.35rem;
  border-radius: 2px;
  background: var(--gold);
}

.online-card__bars i:nth-child(1) { height: 40%; }
.online-card__bars i:nth-child(2) { height: 70%; }
.online-card__bars i:nth-child(3) { height: 100%; }

.online-card__node--backup .online-card__bars i {
  background: var(--sage);
}

.online-card__node--backup .online-card__bars i:nth-child(3) {
  background: var(--gold);
}

.online-card__tag {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.online-card__link {
  flex: 1;
  height: 1px;
  margin: 0 0.75rem;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
}

/* Stay protected visual */
.protected-card {
  position: relative;
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protected-card__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.protected-card__ring--outer {
  inset: -0.9rem;
  border-color: var(--line);
}

.protected-card__check {
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--gold);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12.5l5 5L20 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12.5l5 5L20 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Stay protected — immersive chapter */

.protected-chapter {
  position: relative;
}

.protected-chapter__track {
  position: relative;
  height: 155svh;
}

.protected-chapter__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.protected-chapter__frame picture,
.protected-chapter__frame img {
  width: 100%;
  height: 100%;
}

.protected-chapter__frame img {
  object-fit: cover;
  opacity: 0.64;
}

.protected-chapter__frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.72) 0%, rgba(10, 10, 8, 0.46) 38%, rgba(10, 10, 8, 0.8) 100%),
    radial-gradient(ellipse at 78% 30%, rgba(215, 165, 70, 0.1), transparent 55%);
  content: "";
}

.protected-chapter__stage {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  align-content: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  padding-inline: var(--pad);
}

.protected-chapter__intro {
  max-width: 34rem;
  text-align: center;
  margin-inline: auto;
}

.protected-chapter__intro h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.protected-chapter__intro .lede {
  margin-inline: auto;
}

.protected-chapter__sequence {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
}

.protected-chapter__step {
  margin: 0;
  color: rgba(246, 243, 236, 0.85);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 360ms var(--ease), transform 360ms var(--ease);
}

.js .protected-chapter__step {
  color: rgba(246, 243, 236, 0.35);
}

.js .protected-chapter__step.is-active {
  color: var(--ivory);
  transform: translateY(-2px);
}

.js .protected-chapter__step.is-done {
  color: rgba(246, 243, 236, 0.68);
}

.protected-chapter__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.protected-chapter__cta .chapter__support {
  color: rgba(246, 243, 236, 0.7);
}

.js .protected-chapter__cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.js .protected-chapter__track.is-resolved .protected-chapter__cta {
  opacity: 1;
  transform: none;
}

.protected-chapter__triggers {
  position: absolute;
  top: 41svh;
  left: 0;
  right: 0;
  height: 73svh;
  display: flex;
  flex-direction: column;
}

.protected-chapter__triggers span {
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {
  .protected-chapter__track {
    height: auto;
  }

  .protected-chapter__stage {
    position: static;
    height: auto;
    padding-block: clamp(3rem, 6vw, 5rem);
  }

  .protected-chapter__triggers {
    display: none;
  }

  .js .protected-chapter__step,
  .js .protected-chapter__step.is-active,
  .js .protected-chapter__step.is-done {
    color: var(--ivory);
    transform: none;
  }

  .js .protected-chapter__cta {
    opacity: 1;
    transform: none;
  }
}

/* One accountable partner */

.partner-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.partner-copy h2 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
}

.partner-copy .lede + .lede {
  margin-top: 0.9rem;
}

.partner-sequence {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-sequence li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.partner-sequence li:first-child {
  border-top: 1px solid var(--line);
}

.partner-sequence__mark {
  width: 0.6rem;
  height: 0.6rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--paper);
}

.partner-sequence p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Real work — feature hierarchy */

.project-feature {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.project-feature__visual {
  display: flex;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(246, 243, 236, 0.06);
}

.project-feature__body h3 {
  margin: 0.5rem 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.project-feature__body p {
  max-width: 40rem;
  margin: 0;
  color: rgba(246, 243, 236, 0.72);
}

.project-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-pair .project-card {
  margin: 0;
}

/* Real Work — editorial hierarchy */

.work-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(246, 243, 236, 0.04);
  aspect-ratio: 1600 / 890;
}

.work-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__body h3 {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.work-card__body p {
  margin: 0;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.92rem;
}

.work-card__status {
  margin-top: 0.4rem;
  color: rgba(246, 243, 236, 0.5);
  font-size: 0.8rem;
}

.work-feature {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.work-card--feature .work-card__media {
  aspect-ratio: 16 / 7.2;
}

.work-card--feature .work-card__body h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.work-pair,
.work-trio {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.work-pair {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.work-trio {
  grid-template-columns: repeat(3, 1fr);
}

/* Supporting work rail - unified component (shared motion engine via [data-auto-rail]) */

.supporting-rail {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line-light);
}

.supporting-rail__viewport {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  margin-inline: calc(var(--pad) * -1);
}

.supporting-rail__track {
  display: flex;
  gap: 1.25rem;
  padding-left: var(--pad);
  padding-right: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: none;
  scroll-padding-left: var(--pad);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.supporting-rail__track::-webkit-scrollbar {
  display: none;
}

.supporting-rail__track.is-interacting {
  scroll-snap-type: x proximity;
}

.supporting-rail__item {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(280px, 81vw, 326px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.supporting-rail__item[aria-hidden="true"] {
  pointer-events: none;
}

.supporting-rail__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
}

.supporting-rail__item figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 0.6rem;
  gap: 0.15rem;
}

.supporting-rail__item figcaption span:first-child {
  font-weight: 600;
  font-size: 0.86rem;
}

.supporting-rail__item figcaption span:last-child {
  color: rgba(246, 243, 236, 0.5);
  font-size: 0.76rem;
}

.supporting-rail__progress {
  position: relative;
  margin-top: clamp(1.25rem, 3vw, 1.5rem);
  height: 2px;
}

.supporting-rail__progress-base {
  position: absolute;
  inset: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(246, 243, 236, 0.16);
}

.supporting-rail__progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22%;
  height: 2px;
  transform: translate(0, -50%);
  background: var(--gold);
  border-radius: 1px;
  will-change: transform;
}

.supporting-rail__note {
  margin-top: 1.5rem;
  max-width: 42rem;
  color: rgba(246, 243, 236, 0.45);
  font-size: 0.76rem;
}

@media (min-width: 901px) {
  .supporting-rail__item {
    width: min(30vw, 420px);
  }
}

@media (min-width: 1024px) {
  .supporting-rail__progress,
  .home-supporting-proof__progress {
    display: none;
  }
}

@media (hover: hover) and (min-width: 901px) {
  .supporting-rail__item img {
    transition: transform 320ms var(--ease);
  }

  .supporting-rail__item:hover img {
    transform: scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .supporting-rail__track {
    scroll-behavior: auto !important;
    scroll-snap-type: x proximity;
  }

  .supporting-rail__item img {
    transition: none !important;
  }
}

.systems-now {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line-light);
}

.systems-now__grid {
  display: grid;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.systems-now__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.systems-now__media {
  width: 8rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1080 / 1350;
}

.systems-now__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.systems-now__item h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}

.systems-now__item p {
  margin: 0;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.86rem;
}

/* Work page — editorial portfolio */

.page-hero--work {
  min-height: auto;
  padding-bottom: 0;
}

.page-hero--work .page-hero__inner {
  min-height: 0;
  justify-content: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

/* Insights hub — shorter hero so Start Here is close to the fold */

.page-hero--insights {
  min-height: auto;
}

.page-hero--insights .page-hero__inner {
  min-height: 0;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.page-hero--work h1 {
  max-width: 18ch;
}

.work-portfolio {
  background: var(--ink);
  color: var(--ivory);
}

.work-card__meta {
  margin: 0 0 0.5rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.work-systems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.work-systems__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-systems__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #070b0a;
  border: 1px solid rgba(246, 243, 236, 0.08);
  padding: 6%;
  aspect-ratio: 1080 / 1350;
}

.work-systems__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-systems__body h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.work-systems__body p {
  margin: 0;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.86rem;
}

.work-pair--weighted {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
}

.work-pair--weighted .work-card:first-child .work-card__media {
  aspect-ratio: 4 / 3;
}

.work-card--coco img,
.work-card--black-circle img,
.work-card--organic img,
.work-card--ayo img,
.work-systems__media img,
.supporting-rail__item img {
  object-position: top center;
}

/* Local reality / responsible systems */

.reality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}

.reality-block--local {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 20px;
  background: radial-gradient(ellipse 75% 70% at 68% 45%, rgba(215, 165, 70, 0.07), transparent 68%);
}

.reality-block__copy {
  min-width: 0;
}

.reality-block__map {
  width: 100%;
  opacity: 1;
  will-change: transform, opacity;
}

.js .reality-block__map {
  opacity: 0;
  transform: translateY(32px) scale(0.978) rotate(-1.2deg);
  transition:
    opacity 620ms var(--ease) 90ms,
    transform 720ms var(--ease) 90ms;
}

.js [data-reveal].is-visible .reality-block__map {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reality-block__map {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reality-block h2 {
  max-width: 22ch;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.reality-block__closing {
  margin-top: 1.2rem;
  color: var(--ink);
  font-weight: 700;
}

/* Government */

.government-layout {
  max-width: 42rem;
}

.government-layout .button {
  margin-top: 0.5rem;
}

.final-cta__note {
  margin-top: 1.2rem;
  max-width: 34rem;
  color: rgba(246, 243, 236, 0.62);
  font-size: 0.78rem;
}

.systems-proof-proof {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.systems-proof-proof .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.systems-proof-proof .proof-list {
  border-top: 1px solid var(--line-light);
}

.systems-proof-proof .proof-item + .proof-item {
  border-top-color: var(--line-light);
}

.systems-proof-proof .proof-item p,
.systems-proof-proof .proof-item span {
  color: rgba(246, 243, 236, 0.72);
}

.systems-proof-proof > .proof-list > p {
  color: rgba(246, 243, 236, 0.55) !important;
}

.systems-proof-method {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.systems-proof-method .independence-layout {
  align-items: start;
}

.systems-proof-method .independence-steps {
  border-top-color: var(--line-light);
}

.systems-proof-method .independence-steps article {
  border-bottom-color: var(--line-light);
}

.systems-proof-method .independence-steps p {
  color: rgba(246, 243, 236, 0.75);
}

.systems-proof-method h3 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--ivory);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.systems-proof-method h3 span {
  color: var(--gold);
}

.systems-proof-method .ecosystem-note {
  color: rgba(246, 243, 236, 0.62);
}

.control-continuity-shell {
  border-top: 1px solid var(--line-light);
}

.control-continuity-head {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.control-continuity-head h2 {
  max-width: 18ch;
  margin: 0 auto 1rem;
}

.control-continuity-head h2 span {
  color: var(--gold);
}

.control-continuity-shell .continuity-block,
.control-continuity-shell .security-block {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.control-continuity-shell .continuity-block__eyebrow,
.control-continuity-shell .security-block__eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.control-continuity-shell .continuity-block h3,
.control-continuity-shell .security-block h3 {
  max-width: 18ch;
  margin: 0 auto 1rem;
  color: var(--ivory);
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.control-continuity-shell .security-block__risks {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.88rem;
}

.control-continuity-shell .continuity-grid {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.control-continuity-shell .continuity-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

.control-continuity-shell .security-block {
  margin-top: clamp(2.5rem, 5vw, 6rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line-light);
}

.control-continuity-shell .control-statement {
  padding-block: 0;
}

.control-continuity-shell .control-statement > p:first-of-type {
  max-width: 18ch;
  margin-bottom: 1.8rem;
  color: var(--ivory);
}

.government-row {
  display: grid;
  margin-top: clamp(2.5rem, 5vw, 6rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.government-row h3 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.government-row h3 span {
  color: var(--gold);
}

.government-row > div:first-child > p:not(.eyebrow):not(.institutional-support) {
  color: rgba(246, 243, 236, 0.82);
}

.venture-row {
  display: grid;
  margin-top: clamp(2.5rem, 5vw, 6rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line-light);
  align-items: end;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.venture-row h3 {
  margin-bottom: 1.25rem;
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.venture-row .lede {
  color: rgba(246, 243, 236, 0.82);
}

.venture-row > div:first-child > p:last-child {
  color: rgba(246, 243, 236, 0.72);
  font-size: 0.76rem;
}

.ownership__statement h3 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

@media (max-width: 900px) {
  .operating-layer-layout,
  .problem-list--compact,
  .government-row,
  .venture-row,
  .control-continuity-shell .continuity-grid--compact,
  .friction-layout,
  .chapter,
  .partner-layout,
  .reality-layout,
  .project-pair,
  .work-pair,
  .work-trio,
  .systems-now__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .section-heading h2 {
    margin-bottom: 1.25rem;
  }

  .chapter {
    gap: 3rem;
    padding-block: 3rem;
  }

  /* Mobile stacking order must always be: eyebrow, heading, body, support,
     CTA, then media - regardless of which side the media sits on desktop. */
  .chapter__media {
    order: 2;
  }

  .chapter__label {
    margin-bottom: 1rem;
  }

  .chapter__copy h3 {
    margin-bottom: 1.25rem;
  }

  .chapter__points {
    margin-bottom: 1.5rem;
  }

  .chapter__support {
    margin-bottom: 1.5rem;
  }

  .partner-sequence li {
    padding-block: 1.3rem;
  }

  .systems-now__item {
    gap: 1.25rem;
  }

  .systems-now__media {
    width: 11rem;
  }

  .final-cta__inner {
    gap: 2.5rem;
  }

  .page-hero--work {
    padding-top: calc(var(--header-offset) + 0.75rem);
  }

  .page-hero--work h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .work-systems {
    grid-template-columns: 1fr;
  }

  .work-pair--weighted {
    grid-template-columns: 1fr;
  }

  .work-card--coco .work-card__media,
  .work-card--black-circle .work-card__media,
  .work-card--organic .work-card__media {
    aspect-ratio: 4 / 3;
  }

  .reality-block--local {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .reality-block__map {
    order: -1;
    width: 92%;
    margin-inline: auto;
  }

  .protected-chapter__track {
    height: 139svh;
  }

  .protected-chapter__triggers {
    height: 57svh;
  }

  .protected-chapter__stage {
    align-content: end;
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .protected-chapter__sequence {
    gap: 1rem 1.5rem;
  }

  .chapter--reverse .chapter__media {
    order: 0;
  }

  .problem-list--compact .problem:nth-child(odd) {
    border-right: 0;
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcome:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .outcome:nth-child(2n) {
    border-right: 0;
  }

  .project-card {
    padding: 1.1rem 1.25rem;
  }

  .project-card__visual {
    margin: 1rem 0 0.75rem;
  }

  .project-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
  }

  .project-card p {
    font-size: 0.82rem;
  }

  .continuity-item {
    min-height: 0;
    padding: 1.25rem;
  }

  .continuity-item img,
  .capability img {
    width: 1.6rem;
    height: 1.6rem;
    margin-bottom: 1rem;
  }

  .continuity-item h3 {
    font-size: 1.05rem;
  }

  .continuity-item p {
    font-size: 0.8rem;
  }

  .people-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .person img {
    aspect-ratio: 15 / 16;
  }

  .team-card img {
    aspect-ratio: 15 / 16;
  }

  .person__body {
    padding: 0.9rem;
  }

  .person h3 {
    font-size: 0.92rem;
  }

  .person p {
    font-size: 0.72rem;
  }

  .ownership__points li {
    min-height: 0;
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .hero-copy {
    padding-block: 1.5rem 0.75rem;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome:nth-child(odd) {
    border-right: 0;
  }

  .outcome {
    padding: 1.25rem;
  }

  .team-grid {
    gap: 0.75rem;
  }

  .team-card__body {
    padding: 0.75rem;
  }

  .team-card h3 {
    font-size: 0.88rem;
  }

  .team-card__role,
  .team-card p {
    font-size: 0.72rem;
  }

  .person img,
  .team-card img {
    aspect-ratio: 15 / 16;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .nav-toggle,
  .operating-spine__layer,
  .workflow,
  .project-card {
    border: 1px solid CanvasText;
  }
}

/* ==========================================================================
   Homepage Real Work - namespaced to .home- only. Does not affect /work/.
   ========================================================================== */

.home-real-work {
  margin-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.home-real-work__intro {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.home-real-work__intro .eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.86rem;
  color: var(--gold-soft);
}

.home-real-work__intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--ivory);
}

.home-real-work__intro .lede {
  margin: 0;
  font-size: 1rem;
  color: rgba(246, 243, 236, 0.8);
  max-width: 36rem;
}

/* ---- Featured projects: normal-flow editorial markers, no cards ---- */

.home-real-work__primary {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 5.5vw, 3rem);
}

.home-project {
  display: flex;
  flex-direction: column;
}

.home-project__media {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: clamp(1.125rem, 4vw, 1.5rem);
}

.home-project__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-project--coco .home-project__media { aspect-ratio: 3 / 2; }
.home-project--black .home-project__media { aspect-ratio: 4 / 3; }
.home-project--organic .home-project__media { aspect-ratio: 3 / 2; }

.home-project__marker {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
}

.home-project__marker-rule {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.home-project__marker-index {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-project__marker-label {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(246, 243, 236, 0.55);
}

.home-project__content {
  color: var(--ivory);
}

.home-project__content h3 {
  margin: 0 0 clamp(0.25rem, 1.2vw, 0.4375rem);
  font-size: 1.3rem;
  font-weight: 600;
}

.home-project__meta {
  margin: 0 0 clamp(0.375rem, 1.6vw, 0.5625rem);
  font-size: 0.875rem;
  color: rgba(246, 243, 236, 0.68);
}

.home-project__status {
  font-weight: 600;
  color: var(--gold-soft);
}

.home-project__content p {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(246, 243, 236, 0.85);
}

/* ---- Supporting proof: real continuously moving rail ---- */

.home-supporting-proof {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

.home-supporting-proof__heading {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.55);
}

.home-supporting-proof__viewport {
  position: relative;
  overflow: hidden;
  margin-inline: calc(var(--pad) * -1);
}

.home-supporting-proof__track {
  display: flex;
  gap: 1rem;
  padding-left: var(--pad);
  padding-right: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: none;
  scroll-padding-left: var(--pad);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  outline-offset: 4px;
  scrollbar-width: none;
}

.home-supporting-proof__track::-webkit-scrollbar {
  display: none;
}

.home-supporting-proof__track.is-interacting {
  scroll-snap-type: x proximity;
}

[data-rail-track] {
  cursor: grab;
}

[data-rail-track].is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.home-supporting-proof__item {
  flex: 0 0 auto;
  width: clamp(280px, 81vw, 326px);
  scroll-snap-align: start;
  margin: 0;
}

.home-supporting-proof__item[aria-hidden="true"] {
  pointer-events: none;
}

.home-supporting-proof__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.home-supporting-proof__item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.75rem;
}

.home-supporting-proof__item figcaption span:first-child {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ivory);
}

.home-supporting-proof__item figcaption span:last-child {
  font-size: 0.78rem;
  color: rgba(246, 243, 236, 0.5);
}

.home-supporting-proof__progress {
  position: relative;
  margin-top: clamp(1.25rem, 3vw, 1.5rem);
  height: 2px;
}

.home-supporting-proof__progress-base {
  position: absolute;
  inset: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(246, 243, 236, 0.16);
}

.home-supporting-proof__progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22%;
  height: 2px;
  transform: translate(0, -50%);
  background: var(--gold);
  border-radius: 1px;
  will-change: transform;
}

/* ---- Systems: dark integrated media stages, no white boxes ---- */

.home-systems {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 3.25rem);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line-light);
}

.home-system {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-system__stage {
  width: 100%;
  max-width: 14.5rem;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  background: #070b0a;
  border: 1px solid rgba(246, 243, 236, 0.08);
  border-radius: 14px;
  overflow: hidden;
  padding: 6%;
}

.home-system__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-system__content {
  color: var(--ivory);
}

.home-system__content h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.home-system__meta {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: rgba(246, 243, 236, 0.68);
}

.home-system__status {
  font-weight: 600;
  color: var(--gold-soft);
}

.home-system__content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(246, 243, 236, 0.85);
}

.home-real-work__cta {
  margin-top: clamp(2.5rem, 6vw, 3rem);
}

.home-real-work__cta .button {
  width: 100%;
  text-align: center;
}

/* ---- Tablet / desktop ---- */

@media (min-width: 600px) {
  .home-real-work__cta .button {
    width: auto;
  }
}

@media (min-width: 901px) {
  .home-real-work__primary {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    align-items: start;
    gap: clamp(2rem, 4vw, 2.75rem) clamp(2rem, 4vw, 3rem);
  }

  .home-project--coco {
    grid-column: 1 / -1;
  }

  .home-project--black {
    align-self: start;
  }

  .home-project--organic {
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }

  .home-supporting-proof__item {
    width: min(30vw, 420px);
  }

  .home-systems {
    flex-direction: row;
    gap: clamp(2rem, 4vw, 2.75rem);
  }

  .home-system {
    flex: 1;
  }

  .home-system__stage {
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .home-project--coco .home-project__media {
    aspect-ratio: 16 / 7.2;
  }
}

@media (hover: hover) and (min-width: 901px) {
  .home-project__media img,
  .home-supporting-proof__item img {
    transition: transform 320ms var(--ease);
  }

  .home-project:hover .home-project__media img,
  .home-supporting-proof__item:hover img {
    transform: scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-supporting-proof__track {
    scroll-behavior: auto !important;
    scroll-snap-type: x proximity;
  }

  .home-project__media img,
  .home-supporting-proof__item img {
    transition: none !important;
  }
}

