@font-face {
  font-family: "Manrope";
  src: local("Manrope");
  font-style: normal;
  font-weight: 400 800;
  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.15rem, 4vw, 3rem);
  --section: clamp(5.5rem, 11vw, 10rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::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: Manrope, "Segoe UI", 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);
}

h2 {
  font-size: clamp(2.45rem, 6.4vw, 5.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
}

::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);
}

.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: 1.2rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.theme-dark .eyebrow,
.theme-green .eyebrow {
  color: var(--gold);
}

.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.12rem, 1rem + 0.55vw, 1.55rem);
  line-height: 1.55;
}

.theme-dark .lede,
.theme-green .lede {
  color: rgba(246, 243, 236, 0.72);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading h2 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
}

.section-index {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0.8rem 1.25rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button::after {
  content: "↗";
  font-size: 1.1em;
}

.button:hover {
  background: var(--ink);
  color: var(--ivory);
}

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

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

.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:hover {
  background: transparent;
  color: inherit;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: var(--ivory);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-shell {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 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__full {
  width: 11.25rem;
}

.brand__compact {
  display: none;
  width: 2.75rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.6rem);
}

.nav-panel a:not(.button) {
  position: relative;
  padding-block: 0.9rem;
  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.8rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.76rem;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 0.8rem;
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  transition:
    transform 240ms ease,
    top 240ms ease;
}

.nav-toggle span:first-child {
  top: 1.12rem;
}

.nav-toggle span:last-child {
  top: 1.78rem;
}

.nav-open .nav-toggle span:first-child {
  top: 1.45rem;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  top: 1.45rem;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 5rem;
  overflow: hidden;
  background: var(--green);
  color: var(--ivory);
}

.hero::before {
  position: absolute;
  top: 5rem;
  bottom: 0;
  left: calc(50% + 2rem);
  width: 1px;
  background: rgba(246, 243, 236, 0.12);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 5rem);
  grid-template-columns: minmax(0, 0.94fr) minmax(27rem, 1.06fr);
}

.hero-copy {
  display: flex;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(2rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4rem) 0;
  flex-direction: column;
  justify-content: center;
}

.hero-copy .eyebrow {
  margin-bottom: clamp(1.6rem, 3vw, 2.8rem);
  color: rgba(246, 243, 236, 0.62);
}

.hero h1 {
  max-width: 10.5ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 6vw, 5.7rem);
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.82em;
  line-height: 1.07;
}

.hero .lead {
  max-width: 41rem;
  margin-bottom: 1.6rem;
  color: rgba(246, 243, 236, 0.78);
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta {
  display: flex;
  margin-top: clamp(1.8rem, 3vw, 2.8rem);
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
  color: rgba(246, 243, 236, 0.64);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta span::before {
  margin-right: 0.55rem;
  color: var(--gold);
  content: "●";
  font-size: 0.5em;
  vertical-align: 0.2em;
}

.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::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--green);
  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: 3rem 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(--green);
  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 small {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.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-layer-reveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.save-data .operating-spine__line,
.save-data .operating-spine__layer {
  opacity: 1;
  animation: none;
}

.outcome-rail {
  border-top: 1px solid rgba(246, 243, 236, 0.14);
  background: var(--ink);
  color: var(--ivory);
}

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

.outcome {
  min-height: 8rem;
  border-left: 1px solid rgba(246, 243, 236, 0.14);
  padding: 1.6rem 1.25rem;
}

.outcome:last-child {
  border-right: 1px solid rgba(246, 243, 236, 0.14);
}

.outcome small {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.outcome strong {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

/* Problems */

.problems-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.problems-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.problems-intro h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.problem-list {
  border-top: 1px solid var(--line);
}

.problem {
  display: grid;
  min-height: 8.5rem;
  align-content: center;
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
}

.problem__number {
  color: var(--gold-deep);
  font-size: 0.73rem;
  font-weight: 800;
}

.problem h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.22rem, 2.4vw, 2rem);
}

.problem p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.closing-line {
  margin-top: 2.5rem;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.closing-line em {
  color: var(--green);
  font-style: normal;
}

/* 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: 14rem;
  border-bottom: 1px solid var(--line-light);
  padding: 2rem 1.4rem;
}

.continuity-item:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.continuity-item img,
.capability img {
  width: 2rem;
  height: 2rem;
  margin-bottom: 2.5rem;
  filter: invert(76%) sepia(34%) saturate(819%) hue-rotate(358deg) brightness(88%);
}

.continuity-item p {
  margin-bottom: 0;
  color: rgba(246, 243, 236, 0.68);
  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.65);
}

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

.access-strip span {
  min-height: 7rem;
  padding: 1.3rem 1rem;
  color: rgba(246, 243, 236, 0.64);
  font-size: 0.74rem;
}

.access-strip span + span {
  border-left: 1px solid var(--line-light);
}

.access-strip b {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 0.68rem;
}

.control-statement {
  padding-block: clamp(4rem, 8vw, 7rem);
  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 and architecture */

.presence-layout,
.architecture-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.presence-layout h2,
.architecture-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;
}

.architecture-stack {
  border: 1px solid var(--line);
}

.architecture-stack__item {
  display: grid;
  min-height: 6.5rem;
  align-items: center;
  padding: 1.1rem 1.3rem;
  grid-template-columns: 3rem 1fr auto;
}

.architecture-stack__item + .architecture-stack__item {
  border-top: 1px solid var(--line);
}

.architecture-stack__item small {
  color: var(--gold-deep);
  font-weight: 800;
}

.architecture-stack__item strong {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.architecture-stack__item span {
  color: var(--muted);
  font-size: 0.74rem;
  text-align: right;
}

/* Engagement */

.engagement-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.engagement {
  min-height: 21rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.engagement__number {
  margin-bottom: 4.5rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.engagement h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.engagement p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Projects */

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

.project-card {
  position: relative;
  min-height: 27rem;
  border-bottom: 1px solid var(--line-light);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
}

.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 {
  position: relative;
  display: flex;
  width: 12rem;
  height: 12rem;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  border: 1px solid rgba(215, 165, 70, 0.5);
  border-radius: 50%;
}

.project-card__visual::before,
.project-card__visual::after {
  position: absolute;
  border: 1px solid rgba(246, 243, 236, 0.16);
  border-radius: 50%;
  content: "";
}

.project-card__visual::before {
  width: 8.4rem;
  height: 8.4rem;
}

.project-card__visual::after {
  width: 3.8rem;
  height: 3.8rem;
  background: rgba(215, 165, 70, 0.08);
}

.project-card__visual img {
  position: relative;
  z-index: 1;
  width: 2.1rem;
  height: 2.1rem;
  filter: invert(76%) sepia(34%) saturate(819%) hue-rotate(358deg) brightness(88%);
}

.project-card h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.project-card p {
  margin-bottom: 0;
  color: rgba(246, 243, 236, 0.62);
  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.5rem 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: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.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.5rem 0;
  grid-template-columns: 6rem minmax(12rem, 1fr) minmax(12rem, 0.8fr);
  gap: 1.5rem;
}

.independence-steps small {
  color: var(--gold-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.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: 10ch;
  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.55);
  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: 9rem;
  padding: 1rem;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(246, 243, 236, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.venture-journey span + span {
  border-left: 1px solid var(--line-light);
}

.venture-journey small {
  color: var(--gold);
  font-size: 0.66rem;
}

/* Gambia field layer */

.field-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.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.55);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes map-flow {
  to {
    stroke-dashoffset: -260;
  }
}

/* Insights */

.insights-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.insight-card {
  display: flex;
  min-width: 0;
  background: var(--ivory);
  flex-direction: column;
  text-decoration: none;
}

.insight-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green);
}

.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.insight-card:hover .insight-card__media img {
  transform: scale(1.025);
}

.insight-card__body {
  display: flex;
  padding: clamp(1.25rem, 3vw, 2rem);
  flex: 1;
  flex-direction: column;
}

.insight-card__meta {
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: auto;
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
}

.insight-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Company */

.company-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.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: 4 / 4.25;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.02);
}

.person__body {
  padding: 1.25rem;
}

.person h3 {
  margin-bottom: 0.35rem;
}

.person p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.person p + p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
}

.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(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2rem, 5vw, 4.5rem) 0;
}

.ownership__statement h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

.ownership__points {
  display: grid;
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.ownership__points span {
  display: flex;
  min-height: 8rem;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  padding: 1.2rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.ownership__points span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.ownership__points span:last-child {
  border-bottom: 0;
}

.ownership__points span: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(3rem, 8vw, 8rem);
}

.final-cta h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.final-cta__action {
  align-self: end;
}

.final-cta__topics {
  margin-bottom: 1.8rem;
  color: rgba(246, 243, 236, 0.6);
  font-size: 0.82rem;
  line-height: 2;
}

.contact-line {
  display: flex;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: rgba(246, 243, 236, 0.65);
  font-size: 0.75rem;
}

.contact-line a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line-light);
  padding-block: 4rem 2rem;
  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.5rem;
}

.footer-brand p {
  max-width: 22rem;
  color: rgba(246, 243, 236, 0.56);
  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.75rem;
  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: 4rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.5rem;
  color: rgba(246, 243, 236, 0.55);
  font-size: 0.7rem;
}

/* Inner pages */

.page-hero {
  min-height: 72svh;
  padding-top: 5rem;
  background: var(--green);
  color: var(--ivory);
}

.page-hero__inner {
  display: flex;
  min-height: calc(72svh - 5rem);
  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: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.page-hero__lede {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: rgba(246, 243, 236, 0.72);
  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: 9ch;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
}

.page-list {
  border-top: 1px solid var(--line);
}

.page-list article {
  display: grid;
  border-bottom: 1px solid var(--line);
  padding-block: 1.8rem;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}

.page-list article > span {
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 800;
}

.page-list h3 {
  margin-bottom: 0.55rem;
}

.page-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-list p a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.contact-form {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form label > span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.75rem 0.85rem;
  background: transparent;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-deep);
}

.contact-form__context {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form__privacy {
  margin-top: 1.25rem;
}

.contact-form__privacy label {
  display: grid;
  align-items: start;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
}

.contact-form__privacy input {
  width: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.15rem;
}

.contact-form__privacy label > span {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.55;
}

.contact-form__privacy p,
.contact-form__availability {
  color: var(--muted);
  font-size: 0.75rem;
}

.contact-form__privacy p {
  margin: 0.8rem 0 0 2rem;
}

.contact-form__verification {
  min-height: 0;
  margin-top: 1.25rem;
}

.contact-form__availability {
  margin-block: 1rem;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-form__actions [role="status"] {
  margin: 0;
  font-size: 0.8rem;
}

.contact-form__actions [data-state="success"] {
  color: #226b3a;
}

.contact-form__actions [data-state="error"] {
  color: #9b2d20;
}

.contact-form button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.8);
  opacity: 0.55;
}

.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 .page-list article > span,
.theme-green .page-list article > span,
.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 img {
  width: 100%;
  margin: 2.5rem 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 0.85fr;
  }

  .hero-copy {
    padding-right: 2.5rem;
  }

  .hero-system {
    padding-left: 2rem;
  }

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

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

  .insight-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --section: clamp(4.75rem, 13vw, 7rem);
  }

  .brand__full {
    display: none;
  }

  .brand__compact {
    display: block;
  }

  .brand {
    min-width: 3rem;
    min-height: 3rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 7rem var(--pad) 2rem;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .nav-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-panel a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    font-size: clamp(1.4rem, 5vw, 2.1rem);
    letter-spacing: -0.04em;
  }

  .nav-panel .button {
    min-height: 3.4rem;
    margin-top: 1.5rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-system {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-copy {
    min-height: 0;
    padding-block: 2.75rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 13vw, 6.5rem);
  }

  .hero-system {
    border-top: 1px solid rgba(246, 243, 236, 0.12);
    padding-block: 1.25rem 2.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: 1.8rem 1fr;
    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;
  }

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

  .outcome:nth-child(3),
  .outcome:nth-child(4) {
    border-top: 1px solid rgba(246, 243, 236, 0.14);
  }

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

  .problems-layout,
  .time-layout,
  .continuity-layout,
  .security-head,
  .presence-layout,
  .architecture-layout,
  .independence-layout,
  .institutional-layout,
  .venture-layout,
  .field-grid,
  .company-layout,
  .final-cta__inner,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .problems-intro {
    position: static;
  }

  .problems-intro h2 {
    max-width: 12ch;
  }

  .security-head {
    gap: 2rem;
  }

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

  .access-strip span:nth-child(4) {
    border-left: 0;
  }

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

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

  .project-card {
    min-height: auto;
  }

  .project-card + .project-card {
    border-left: 0;
  }

  .independence-steps article {
    grid-template-columns: 5rem 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-copy .eyebrow {
    margin-bottom: 0.9rem;
  }

  .hero h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(2.6rem, 13vw, 3.2rem);
  }

  .hero .lead {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-meta {
    margin-top: 1rem;
  }

  .outcome {
    min-height: 7.25rem;
    padding: 1.2rem 0.9rem;
  }

  .problem {
    min-height: 0;
    grid-template-columns: 2.3rem 1fr;
  }

  .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;
  }

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

  .access-strip span:nth-child(odd) {
    border-left: 0;
  }

  .access-strip span:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .architecture-stack__item {
    grid-template-columns: 2.4rem 1fr;
  }

  .architecture-stack__item span {
    display: none;
  }

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

  .engagement {
    min-height: 16rem;
  }

  .engagement__number {
    margin-bottom: 2.5rem;
  }

  .proof-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .insights-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .insight-card:first-child {
    grid-column: auto;
  }

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

  .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;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__context {
    grid-column: auto;
  }

  .contact-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__actions .button {
    width: 100%;
  }

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

  .ownership__points span {
    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;
  }
}

@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;
  }
}
