:root {
  color-scheme: light;
  --ink: #102526;
  --ink-2: #18393a;
  --paper: #f8f5ee;
  --paper-2: #efe8dc;
  --white: #ffffff;
  --teal: #0d6768;
  --teal-2: #0d3b3e;
  --mint: #c7e7dc;
  --amber: #d99a2b;
  --coral: #d96850;
  --line: rgba(16, 37, 38, 0.14);
  --shadow: 0 24px 70px rgba(16, 37, 38, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  color: var(--white);
  background: rgba(13, 59, 62, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  background: rgba(13, 59, 62, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.25rem);
  font-size: 0.94rem;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--mint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: clip;
  margin-top: -72px;
  padding: 9rem clamp(1rem, 5vw, 4rem) clamp(3rem, 8vw, 5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 70% 26%, rgba(199, 231, 220, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 78%, rgba(217, 154, 43, 0.14), transparent 24rem),
    linear-gradient(135deg, #071f21 0%, #0d3b3e 46%, #173233 100%);
}

.hero-art,
.hero-system,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-art {
  background-image: url("assets/hero-eduia-context.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  opacity: 0.96;
}

.hero-system {
  pointer-events: none;
  opacity: 0.62;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 29, 31, 0.96), rgba(8, 29, 31, 0.66) 42%, rgba(8, 29, 31, 0.16)),
    linear-gradient(0deg, rgba(8, 29, 31, 0.86), rgba(8, 29, 31, 0.06) 48%);
}

.system-board,
.system-core {
  position: absolute;
  border: 1px solid rgba(199, 231, 220, 0.22);
  border-radius: 8px;
  background: rgba(248, 245, 238, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.system-board {
  width: min(360px, 28vw);
  padding: 1rem;
}

.board-main {
  right: 17vw;
  top: 22%;
}

.board-outcome {
  right: 5vw;
  bottom: 17%;
  display: grid;
  gap: 0.65rem;
}

.board-label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workstream,
.board-outcome b {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 40px;
  padding: 0.55rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.workstream i {
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--amber));
}

.workstream span,
.workstream strong {
  font-size: 0.82rem;
}

.system-core {
  right: 31vw;
  top: 51%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
}

.system-core span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 950;
}

.system-core i {
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(199, 231, 220, 0.42);
  border-radius: 999px;
}

.system-core::before,
.system-core::after {
  content: "";
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  transform-origin: left;
}

.system-core::before {
  left: -180px;
  width: 180px;
  top: 46px;
  transform: rotate(-16deg);
}

.system-core::after {
  left: 95px;
  width: 210px;
  top: 78px;
  transform: rotate(20deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(4.6rem, 15vw, 10rem);
  line-height: 0.86;
  font-weight: 900;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.02;
  font-weight: 850;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  line-height: 1.18;
}

p {
  line-height: 1.68;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 2rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.24;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--teal-2);
  background: var(--mint);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 3rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  padding: 1rem;
  background: rgba(11, 43, 45, 0.44);
}

.hero-proof dt {
  margin-bottom: 0.2rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

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

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

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

.section-data {
  color: var(--white);
  background: #0b2f31;
}

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

.section-contact {
  color: var(--white);
  background: var(--teal-2);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading > p,
.method-layout > div > p,
.impact-copy > p,
.section-contact p {
  color: rgba(16, 37, 38, 0.72);
  font-size: 1.08rem;
}

.section-ink .section-heading > p,
.section-data .section-heading > p,
.section-contact p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 2rem;
  max-width: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-layout p {
  color: rgba(16, 37, 38, 0.72);
  font-size: 1.08rem;
}

.about-visual {
  margin: 0;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.identity-grid article {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 103, 104, 0.08), transparent 58%),
    var(--paper);
}

.identity-grid span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-grid p {
  color: rgba(16, 37, 38, 0.72);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar,
.program-card,
.deliverables article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(16, 37, 38, 0.08);
}

.pillar {
  overflow: hidden;
}

.pillar > img,
.method-visual img,
.impact-visual > img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.pillar > img {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.pillar div {
  padding: 1.2rem;
}

.context-visual {
  position: relative;
  min-height: 230px;
  padding: 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(13, 103, 104, 0.18), rgba(217, 154, 43, 0.1)),
    #f2eadf;
}

.context-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(16, 37, 38, 0.12);
  border-radius: 8px;
}

.chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0.35rem 0.55rem 0;
  padding: 0.42rem 0.55rem;
  border: 1px solid rgba(16, 37, 38, 0.16);
  border-radius: 999px;
  color: var(--teal-2);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
}

.visual-flow,
.automation-path {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
}

.visual-flow b,
.automation-path b,
.matrix span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-align: center;
}

.visual-flow i,
.automation-path i {
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.visual-training {
  background:
    radial-gradient(circle at 28% 42%, rgba(13, 103, 104, 0.2) 0 48px, transparent 50px),
    radial-gradient(circle at 76% 34%, rgba(217, 154, 43, 0.24) 0 58px, transparent 60px),
    #f3eee5;
}

.visual-strategy {
  display: grid;
  place-items: center;
}

.matrix {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(280px, 100%);
}

.matrix::before,
.matrix::after {
  content: "";
  position: absolute;
  background: rgba(16, 37, 38, 0.18);
}

.matrix::before {
  left: 50%;
  top: -16px;
  bottom: -16px;
  width: 1px;
}

.matrix::after {
  left: -16px;
  right: -16px;
  top: 50%;
  height: 1px;
}

.priority-line {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  border-top: 3px solid rgba(13, 103, 104, 0.35);
}

.priority-line i {
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 999px;
  background: var(--coral);
}

.visual-solution {
  background:
    linear-gradient(135deg, #0d3b3e, #f1e7d7);
}

.screen-lines {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  width: min(260px, calc(100% - 2.8rem));
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.screen-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(13, 103, 104, 0.12));
}

.screen-lines span:nth-child(2) {
  width: 78%;
  background: linear-gradient(90deg, var(--amber), rgba(217, 154, 43, 0.14));
}

.screen-lines span:nth-child(3) {
  width: 58%;
}

.screen-lines span:nth-child(4) {
  width: 88%;
}

.kicker,
.tag {
  margin-bottom: 0.6rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.program-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.15rem;
  color: var(--ink);
}

.program-card ul {
  margin: auto 0 0;
  padding: 1rem 0 0 1.2rem;
}

.program-card li + li {
  margin-top: 0.45rem;
}

.method-layout,
.impact-layout,
.contact-layout,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  color: var(--teal);
  font-weight: 900;
}

.timeline p,
.deliverables p,
.program-card p,
.pillar p {
  color: rgba(16, 37, 38, 0.72);
}

.impact-visual {
  margin: 0;
}

.method-visual {
  margin: 1.6rem 0 0;
}

.method-visual img,
.impact-visual > img {
  box-shadow: var(--shadow);
}

.impact-visual > img {
  aspect-ratio: 16 / 9;
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.use-cases span {
  padding: 0.55rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-weight: 750;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.future-card {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.future-wide {
  grid-column: 1 / -1;
}

.future-card h3 {
  color: var(--white);
}

.future-card p {
  color: rgba(255, 255, 255, 0.72);
}

.future-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.future-timeline::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  top: 2.05rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--coral));
}

.future-timeline div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-height: 230px;
  padding: 0.85rem;
  border-radius: 8px;
  background: rgba(8, 36, 38, 0.6);
}

.future-timeline span {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 950;
}

.future-timeline b {
  color: var(--white);
  font-size: 1.08rem;
}

.metric-card {
  min-height: 260px;
}

.metric {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--mint);
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.9;
  font-weight: 950;
}

.capability-card {
  grid-column: span 1;
}

.capability-bars {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.capability-bars label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.capability-bars i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.capability-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--amber));
}

.source-note {
  max-width: 880px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.source-note a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.chart-card {
  min-height: 360px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.chart-wide {
  grid-column: 1 / -1;
}

.chart-header {
  max-width: 660px;
  margin-bottom: 1rem;
}

.chart-header h3 {
  color: var(--white);
}

.line-chart {
  width: 100%;
  height: auto;
}

.grid-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.line-muted,
.line-accent {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-muted {
  stroke: rgba(255, 255, 255, 0.28);
}

.line-accent {
  stroke: var(--mint);
}

.points circle {
  fill: var(--amber);
  stroke: #0b2f31;
  stroke-width: 3;
}

.chart-labels text {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 750;
}

.bar-chart {
  display: grid;
  min-height: 270px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 0.8rem;
  padding-top: 1rem;
}

.bar-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 0.35rem;
  height: 230px;
  padding-top: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bar-row span {
  grid-column: 1 / -1;
  align-self: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
}

.bar-row i {
  display: block;
  height: var(--h);
  min-height: 20px;
  border-radius: 6px 6px 0 0;
}

.bar-human {
  background: var(--amber);
}

.bar-augmented {
  background: var(--coral);
}

.bar-ai {
  background: var(--mint);
}

.bar-legend {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bar-legend b {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  background: transparent;
  font-size: 0.84rem;
}

.bar-legend b::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: currentColor;
}

.bar-legend .bar-human {
  color: var(--amber);
}

.bar-legend .bar-augmented {
  color: var(--coral);
}

.bar-legend .bar-ai {
  color: var(--mint);
}

.value-loop {
  display: grid;
  grid-template-columns: 1fr 38px 1fr;
  align-items: center;
  gap: 0.85rem;
  min-height: 260px;
}

.value-loop div {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.value-loop span {
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--amber));
}

.context-lab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.context-lab article {
  position: relative;
  min-height: 132px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
    radial-gradient(circle at 85% 24%, rgba(13, 103, 104, 0.16), transparent 5rem);
  box-shadow: 0 16px 48px rgba(16, 37, 38, 0.08);
}

.context-lab article::after {
  content: "IA";
  position: absolute;
  right: 0.75rem;
  top: 0.65rem;
  color: rgba(13, 103, 104, 0.14);
  font-size: 3rem;
  font-weight: 950;
}

.context-lab span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.context-lab b {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.context-lab i {
  color: rgba(16, 37, 38, 0.66);
  font-style: normal;
  font-size: 0.92rem;
}

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

.deliverables article {
  padding: 1.15rem;
}

.contact-layout {
  align-items: center;
}

.contact-direct {
  margin-top: 1.5rem;
}

.contact-direct a {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 850;
}

.social-block {
  margin-top: 1.6rem;
}

.social-block p,
.footer-social p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 38, 0.18);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #fbfaf6;
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.85fr;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.74);
  background: #082426;
}

.site-footer .brand {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: end;
  gap: 0.75rem 1rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 750;
}

.footer-social {
  display: grid;
  align-content: start;
  justify-items: end;
}

.legal {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.legal-page {
  min-height: 100svh;
}

.legal-content {
  max-width: 860px;
}

.legal-content .brand {
  margin-bottom: 2rem;
  color: var(--ink);
}

.legal-content h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content a:not(.button) {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .pillar-grid,
  .program-grid,
  .identity-grid,
  .future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .about-layout,
  .method-layout,
  .impact-layout,
  .contact-layout,
  .proof-grid,
  .chart-grid {
    grid-template-columns: 1fr;
  }

  .chart-wide {
    grid-column: auto;
  }

  .future-wide {
    grid-column: 1 / -1;
  }

  .future-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-timeline::before {
    display: none;
  }

  .system-board {
    width: min(330px, 38vw);
  }

  .board-main {
    right: 10vw;
    top: 18%;
  }

  .board-outcome {
    right: 4vw;
    bottom: 14%;
  }

  .system-core {
    right: 24vw;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(13, 59, 62, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .hero {
    min-height: 84svh;
    margin-top: -66px;
    padding-top: 8rem;
  }

  .hero-system {
    opacity: 0.38;
  }

  .system-board {
    width: 280px;
  }

  .board-main {
    left: 1rem;
    right: auto;
    top: 17%;
  }

  .board-outcome {
    left: auto;
    right: -2rem;
    bottom: 9%;
  }

  .system-core {
    right: 2rem;
    top: 46%;
    width: 92px;
    height: 92px;
  }

  .system-core::before,
  .system-core::after {
    display: none;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 7rem);
  }

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

  .pillar-grid,
  .program-grid,
  .identity-grid,
  .future-grid,
  .future-timeline,
  .deliverables,
  .context-lab,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .future-wide,
  .capability-card {
    grid-column: auto;
  }

  .bar-chart {
    grid-template-columns: 1fr;
  }

  .value-loop {
    grid-template-columns: 1fr;
  }

  .value-loop span {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .chart-labels text {
    font-size: 15px;
  }

  .footer-links {
    justify-content: start;
  }

  .footer-social {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
