:root {
  --ink: #17211c;
  --muted: #5e6b64;
  --paper: #f7f5ef;
  --cream: #fffdf8;
  --line: rgba(23, 33, 28, 0.14);
  --green: #1d6d59;
  --coral: #d95c42;
  --gold: #c5902e;
  --blue: #315f7d;
  --plum: #6d4866;
  --shadow: 0 24px 70px rgba(28, 34, 31, 0.18);
  --radius: 8px;
  font-family: "Ubuntu", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.github-logo {
  border-color: #24292f;
  color: #fff;
  background: #24292f;
  letter-spacing: 0.03em;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.linkedin-logo {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-color: #0a66c2;
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background: #0a66c2;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.site-header.scrolled .linkedin-logo {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 116px clamp(18px, 6vw, 86px) 84px;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  transform: scale(1.04);
  filter: saturate(0.9);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img:first-child {
  grid-row: 1 / 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 19, 17, 0.88), rgba(14, 19, 17, 0.5) 52%, rgba(14, 19, 17, 0.2)),
    linear-gradient(0deg, rgba(14, 19, 17, 0.88), rgba(14, 19, 17, 0.04) 46%);
}

.hero-content {
  position: relative;
  max-width: 980px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffbd78;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--coral);
  color: #fff;
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost {
  background: var(--ink);
  color: #fff;
}

.github-button {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(13, 17, 23, 0.72);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.project-actions a,
.text-link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.github-section {
  background: #eef2ee;
}

.github-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
}

.github-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.github-proof-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
  margin-top: 42px;
}

.github-proof-grid article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.github-proof-grid article:first-child {
  color: #fff;
  background: #24292f;
}

.github-proof-grid article:first-child .button {
  margin-top: 18px;
  color: #24292f;
  background: #fff;
}

.github-proof-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.github-proof-grid h3 {
  margin-bottom: 14px;
}

.github-proof-grid p,
.github-proof-grid li {
  line-height: 1.55;
}

.github-proof-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.github-repo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.github-repo-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--cream);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-strip div {
  min-height: 116px;
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.section-heading,
.leadership-panel,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

h2 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy,
.leadership-panel p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.personal-portrait,
.personal-strip {
  margin: 0;
}

.personal-portrait {
  width: min(100%, 390px);
  margin-top: 28px;
}

.personal-portrait img,
.personal-strip img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(36, 40, 45, 0.08);
}

.personal-portrait img {
  aspect-ratio: 4 / 5;
}

.work-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-section {
  background: #e8ece6;
  border-top: 1px solid var(--line);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.solution-grid > div:first-child p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.solution-stack {
  display: grid;
  gap: 12px;
}

.solution-stack article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--cream);
}

.solution-stack span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.solution-stack article:nth-child(2) span {
  background: var(--coral);
}

.solution-stack article:nth-child(3) span {
  background: var(--blue);
}

.solution-stack h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.solution-stack p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.board-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.board-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.board-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.board-list {
  display: grid;
  gap: 10px;
}

.board-list div {
  border-left: 5px solid var(--green);
  padding: 18px;
  background: #fff;
}

.board-list div:nth-child(2) {
  border-color: var(--coral);
}

.board-list div:nth-child(3) {
  border-color: var(--gold);
}

.board-list div:nth-child(4) {
  border-color: var(--blue);
}

.board-list strong,
.board-list span {
  display: block;
}

.board-list span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.ai-section {
  background: #17211c;
  color: #fffdf8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.ai-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.ai-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.ai-principles span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 10px;
  color: #ffbd78;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.ai-console {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.ai-console-head,
.ai-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ai-console-head strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.ai-inputs,
.ai-output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.ai-inputs label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-inputs select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

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

.ai-output-grid article {
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f5f1e8;
}

.ai-output-grid span {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-output-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.35;
}

.ai-action-row {
  margin-top: 14px;
  justify-content: flex-start;
}

.ai-action-row button {
  border: 1px solid #cfc6b5;
  border-radius: 999px;
  padding: 10px 13px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.ai-action-row button:hover {
  border-color: var(--green);
  color: var(--green);
}

.ai-timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.ai-timeline li {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  border-left: 4px solid var(--gold);
  padding: 12px;
  background: #f8f5ee;
}

.ai-timeline li:first-child {
  border-left-color: var(--green);
  background: #edf5ee;
}

.ai-timeline strong,
.ai-timeline span {
  display: block;
}

.ai-timeline span {
  color: var(--muted);
  line-height: 1.45;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.filter-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 33, 28, 0.04);
}

.launch-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 30px;
  color: #fff;
  background: radial-gradient(circle at 82% 12%, #315d48 0, transparent 30%), #111916;
  text-decoration: none;
}

.launch-preview-label {
  color: #c8ff55;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.launch-preview > strong {
  font-size: clamp(38px, 5vw, 62px);
  line-height: .9;
  letter-spacing: -.05em;
}

.launch-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.launch-preview-metrics b {
  padding: 9px 7px;
  border: 1px solid rgba(255,255,255,.22);
  color: #dce5df;
  font-size: 9px;
  text-align: center;
}

.app-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: var(--green);
  z-index: 1;
}

.app-card .project-body {
  position: relative;
}

.app-card .project-body::before {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.grantguard-card {
  background: linear-gradient(180deg, #ffffff 0, #f4f8f4 100%);
}

.grantguard-card::before {
  background: linear-gradient(90deg, #23624f, #bf8a2d);
}

.grantguard-card .project-shot {
  background: #e8eee8;
}

.grantguard-card .project-shot img {
  object-position: center top;
  filter: saturate(0.9) contrast(1.04);
}

.grantguard-card .project-body::before {
  content: "Governance / grants / compliance";
}

.grantguard-card .project-meta span {
  background: #23624f;
}

.grantguard-card .project-meta span:nth-child(2) {
  background: #bf8a2d;
}

.routesource-card {
  background: linear-gradient(180deg, #ffffff 0, #f3f8f7 100%);
}

.routesource-card::before {
  background: linear-gradient(90deg, #1f5d51, #365f7e);
}

.routesource-card .project-shot {
  background: #dfecea;
}

.routesource-card .project-shot img {
  object-position: center 42%;
  filter: saturate(1.05);
}

.routesource-card .project-body::before {
  content: "Public transit / procurement / vendor support";
}

.routesource-card .project-meta span {
  background: #1f5d51;
}

.routesource-card .project-meta span:nth-child(2) {
  background: #365f7e;
}

.plumbflow-card {
  background: linear-gradient(180deg, #ffffff 0, #f2f6f8 100%);
}

.plumbflow-card::before {
  background: linear-gradient(90deg, #255f7c, #c86b3c);
}

.plumbflow-card .project-shot {
  background: #e7edf0;
}

.plumbflow-card .project-shot img {
  object-position: center 38%;
  filter: saturate(1.08) contrast(1.02);
}

.plumbflow-card .project-body::before {
  content: "Plumbing / dispatch / field service";
}

.plumbflow-card .project-meta span {
  background: #255f7c;
}

.plumbflow-card .project-meta span:nth-child(2) {
  background: #c86b3c;
}

.roadmap-card {
  background: linear-gradient(180deg, #ffffff 0, #f4f7fb 100%);
}

.roadmap-card::before {
  background: linear-gradient(90deg, #175486, #23624f, #c2762f);
}

.roadmap-card .project-body::before {
  content: "IT strategy / roadmap / executive planning";
}

.roadmap-card .project-meta span {
  background: #175486;
}

.roadmap-card .project-meta span:nth-child(2) {
  background: #23624f;
}

.roadmap-shot {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(194, 118, 47, 0.22), transparent 26%),
    linear-gradient(135deg, #edf4f9, #ffffff);
}

.roadmap-mini {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(86%, 520px);
  min-height: 210px;
  align-items: center;
  padding: 28px;
}

.roadmap-mini::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #175486, #23624f, #c2762f);
  content: "";
}

.roadmap-mini span {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #175486;
  box-shadow: 0 12px 28px rgba(23, 84, 134, 0.2);
}

.roadmap-mini span:nth-child(2) {
  background: #23624f;
}

.roadmap-mini span:nth-child(3) {
  background: #c2762f;
}

.roadmap-mini span:nth-child(4) {
  background: #b6463b;
}

.roadmap-mini strong,
.roadmap-mini em {
  position: absolute;
  left: 28px;
  z-index: 2;
  color: var(--ink);
}

.roadmap-mini strong {
  top: 20px;
  font-size: 22px;
}

.roadmap-mini em {
  bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card.hidden {
  display: none;
}

.feature-card {
  grid-column: span 2;
}

.futures-card {
  border-color: rgba(26, 74, 105, 0.28);
  background:
    linear-gradient(135deg, rgba(36, 109, 127, 0.10), transparent 44%),
    #ffffff;
  box-shadow: 0 20px 54px rgba(26, 74, 105, 0.14);
}

.futures-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, #004a99, #32bfc0, #23624f);
  z-index: 1;
}

.futures-card .project-shot {
  background: #e9f5f7;
}

.futures-card .project-shot img {
  object-position: center top;
  filter: saturate(1.05) contrast(1.03);
}

.futures-card .project-body {
  position: relative;
}

.futures-card .project-body::before {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  content: "Digital ramp / SSI / healthcare compliance";
}

.futures-card .project-meta span {
  background: #004a99;
}

.futures-card .project-meta span:nth-child(2) {
  background: #23624f;
}

.project-note {
  border-left: 4px solid #32bfc0;
  margin-top: 16px;
  padding-left: 14px;
}

.project-shot {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e6e1d5;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-card:hover .project-shot img {
  transform: scale(1.03);
}

.project-body {
  padding: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-meta span {
  border-radius: 999px;
  padding: 6px 9px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-meta span:nth-child(2) {
  background: var(--plum);
}

.project-card h3,
.service-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.project-card p,
.service-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.concept-visual {
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(29, 109, 89, 0.95), rgba(49, 95, 125, 0.95)),
    #1d6d59;
}

.concept-visual.accent {
  display: grid;
  align-content: center;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(217, 92, 66, 0.94), rgba(197, 144, 46, 0.92)),
    #d95c42;
}

.mini-toolbar,
.concept-columns,
.concept-rows {
  display: grid;
  gap: 10px;
}

.mini-toolbar {
  grid-template-columns: repeat(3, 10px);
  margin-bottom: 24px;
}

.mini-toolbar span,
.concept-columns span,
.concept-rows span,
.flow-node,
.flow-pair span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.concept-columns {
  grid-template-columns: 1fr 0.7fr 0.9fr;
  margin-bottom: 18px;
}

.concept-columns span {
  height: 58px;
  border-radius: 8px;
}

.concept-rows span {
  height: 14px;
}

.flow-node {
  height: 46px;
  border-radius: 8px;
}

.flow-node.wide {
  width: 78%;
}

.flow-line {
  width: 2px;
  height: 32px;
  margin-left: 32px;
  background: rgba(255, 255, 255, 0.7);
}

.flow-line.short {
  height: 22px;
  margin-left: 50%;
}

.flow-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.flow-pair span {
  height: 68px;
  border-radius: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.service-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.service-number {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 950;
}

.leadership-section {
  background: #e9ede5;
}

.leadership-panel {
  position: relative;
  overflow: visible;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(23, 33, 28, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.experience-map {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.experience-map article {
  position: relative;
  min-height: 104px;
  border: 1px solid rgba(23, 33, 28, 0.14);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(23, 33, 28, 0.05);
  outline: none;
}

.experience-map article:hover,
.experience-map article:focus {
  border-color: var(--green);
  box-shadow: 0 18px 38px rgba(23, 33, 28, 0.14);
}

.experience-map strong,
.experience-map span {
  display: block;
}

.experience-map strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.experience-map span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.experience-popover {
  position: absolute;
  left: 14px;
  right: 14px;
  top: calc(100% - 4px);
  z-index: 8;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  border: 1px solid rgba(23, 33, 28, 0.14);
  border-radius: 10px;
  padding: 14px;
  background: #17211c;
  color: #fff;
  box-shadow: 0 20px 46px rgba(23, 33, 28, 0.26);
  transition: 160ms ease;
  pointer-events: none;
}

.experience-map article:hover .experience-popover,
.experience-map article:focus .experience-popover,
.experience-map article:focus-within .experience-popover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.experience-popover b {
  display: block;
  margin-bottom: 8px;
  color: #ffbd78;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-popover ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-popover li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.credential-list {
  display: grid;
  gap: 10px;
}

.personal-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.personal-strip img {
  aspect-ratio: 4 / 5;
  box-shadow: none;
}

.personal-carousel {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  width: min(100%, 320px);
  justify-self: start;
}

.personal-carousel-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f9fb;
}

.personal-carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 220ms ease, transform 220ms ease;
}

.personal-carousel-image.rotate-180 {
  transform: rotate(180deg) scale(1.02);
}

.personal-carousel-image.rotate-left {
  transform: rotate(-90deg) scale(1.42);
}

.personal-carousel-image.active {
  opacity: 1;
  transform: scale(1);
}

.personal-carousel-image.rotate-180.active {
  transform: rotate(180deg) scale(1.02);
}

.personal-carousel-image.rotate-left.active {
  transform: rotate(-90deg) scale(1.42);
}

.personal-carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.carousel-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--blue);
  background: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.carousel-button:hover {
  border-color: var(--blue);
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(20, 121, 190, 0.24);
}

.carousel-dot.active {
  background: var(--blue);
}

.credential-list div {
  padding: 18px;
  border-left: 5px solid var(--green);
  background: #fff;
}

.credential-list div:nth-child(2) {
  border-color: var(--coral);
}

.credential-list div:nth-child(3) {
  border-color: var(--gold);
}

.credential-list div:nth-child(4) {
  border-color: var(--blue);
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list span {
  margin-top: 4px;
  color: var(--muted);
}

.pricing-section {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(29, 109, 89, 0.09), rgba(197, 144, 46, 0.12)),
    var(--cream);
}

.pricing-section > div:first-child p {
  max-width: 720px;
  color: var(--muted);
}

.pricing-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-lead {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.pricing-lead span,
.pricing-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-lead strong {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.pricing-lead p,
.pricing-grid p,
.pricing-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.pricing-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--paper);
}

.pricing-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

.pricing-note {
  border-left: 5px solid var(--green);
  padding: 12px 14px;
  background: rgba(29, 109, 89, 0.08);
}

.contact-section {
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.contact-section .section-kicker {
  color: #ffbd78;
}

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

.contact-actions {
  justify-content: flex-end;
}

.brief-builder {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.08);
}

.brief-builder label,
.brief-output label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-builder input,
.brief-builder textarea,
.brief-builder select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

.brief-builder textarea {
  resize: vertical;
  line-height: 1.5;
}

.brief-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.brief-examples span {
  color: #ffbd78;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-examples button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.brief-examples button:hover,
.brief-examples button:focus-visible {
  border-color: #ffbd78;
  color: #ffffff;
  outline: none;
}

.brief-suggestions {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.brief-suggestions span {
  color: #ffbd78;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-suggestions ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-suggestions li {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.brief-output {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.brief-output textarea {
  width: 100%;
  min-width: 0;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.brief-output textarea:focus {
  outline: 3px solid rgba(255, 189, 120, 0.32);
  border-color: #ffbd78;
}

.brief-output label {
  margin-bottom: 8px;
  color: #ffbd78;
}

.brief-output p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.ocm-section {
  background:
    linear-gradient(135deg, rgba(49, 95, 125, 0.11), rgba(109, 72, 102, 0.1)),
    var(--cream);
}

.ocm-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ocm-grid p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.ocm-preview {
  display: grid;
  gap: 14px;
}

.ocm-preview article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 33, 28, 0.08);
}

.ocm-preview span,
.artifact-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.ocm-preview strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.ocm-preview p {
  margin: 0;
  font-size: 16px;
}

.toolkit-page {
  background: var(--cream);
}

.toolkit-page .site-header {
  position: sticky;
}

.toolkit-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 380px);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding: 132px clamp(18px, 6vw, 86px) 72px;
  background:
    linear-gradient(135deg, rgba(23, 33, 28, 0.94), rgba(49, 95, 125, 0.88)),
    var(--ink);
  color: #fff;
}

.toolkit-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 6vw, 82px);
}

.toolkit-hero p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.68;
}

.toolkit-summary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.toolkit-summary strong,
.toolkit-summary span {
  display: block;
}

.toolkit-summary strong {
  margin-bottom: 10px;
  color: #ffbd78;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.toolkit-summary span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.artifact-section {
  padding: clamp(64px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.compact-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.artifact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 16px 46px rgba(23, 33, 28, 0.08);
}

.artifact-card h3 {
  margin-bottom: 0;
  font-size: 26px;
}

.artifact-card table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.artifact-card th,
.artifact-card td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.artifact-card th {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.artifact-card tr:last-child td {
  border-bottom: 0;
}

.artifact-measure {
  margin: 0;
  border-left: 5px solid var(--gold);
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(197, 144, 46, 0.09);
  font-size: 15px;
  line-height: 1.55;
}

.script-block {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.script-block strong {
  color: var(--green);
}

.script-block p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.58;
}

.script-block p:last-child {
  margin-bottom: 0;
}

.artifact-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.artifact-steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.executive-brief {
  grid-column: span 2;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--cream);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

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

  .hero-media img:nth-child(2),
  .hero-media img:nth-child(3) {
    display: none;
  }

  .trust-strip,
  .intro-grid,
  .solution-grid,
  .board-grid,
  .ai-grid,
  .ocm-grid,
  .toolkit-hero,
  .section-heading,
  .leadership-panel,
  .github-intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .filters,
  .contact-actions {
    justify-content: flex-start;
  }

  .project-grid,
  .service-grid,
  .ai-inputs,
  .ai-output-grid,
  .pricing-grid,
  .experience-map,
  .artifact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .github-logo {
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero {
    min-height: 90vh;
    padding: 98px 18px 48px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy,
  .intro-copy,
  .leadership-panel p,
  .contact-section p {
    font-size: 16px;
  }

  .trust-strip,
  .project-grid,
  .service-grid,
  .ai-inputs,
  .ai-output-grid,
  .ai-principles,
  .ai-timeline li,
  .pricing-grid,
  .experience-map,
  .artifact-grid {
    grid-template-columns: 1fr;
  }

  .toolkit-hero {
    padding: 104px 18px 54px;
  }

  .artifact-card,
  .ocm-preview article {
    padding: 18px;
  }

  .artifact-card {
    overflow-x: auto;
  }

  .artifact-card table {
    min-width: 620px;
  }

  .executive-brief {
    grid-column: span 1;
  }

  .experience-popover {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    margin-top: 12px;
    box-shadow: none;
    pointer-events: auto;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 62px 18px;
  }

  .project-body,
  .service-grid article {
    padding: 20px;
  }

  .contact-actions .button,
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

/* Resume-inspired visual refresh. Content and layout remain unchanged. */
:root {
  --ink: #24282d;
  --muted: #6f7780;
  --paper: #ffffff;
  --cream: #fbfcfd;
  --line: rgba(36, 40, 45, 0.15);
  --green: #2b93c8;
  --coral: #46bfe8;
  --gold: #9db2bf;
  --blue: #1479be;
  --plum: #56616b;
  --shadow: 0 12px 34px rgba(36, 40, 45, 0.08);
}

* {
  letter-spacing: 0 !important;
}

body,
button,
input,
select,
textarea {
  font-family: "Ubuntu", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
}

.site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark {
  border-color: var(--coral);
  color: var(--blue);
  font-weight: 700;
}

.brand strong,
h1,
h2,
h3 {
  font-weight: 500;
}

.brand small,
.nav-links,
.nav-cta,
.eyebrow,
.section-kicker,
.filter-button,
.project-meta span,
.tag-list li,
.ai-principles span,
.ai-inputs label,
.pricing-lead span,
.pricing-grid span,
.brief-builder label,
.brief-output label,
.toolkit-summary strong,
.artifact-card th {
  font-weight: 700;
}

.hero {
  color: var(--ink);
  background: #ffffff url("assets/hero-systems-blueprint.png") center / cover no-repeat;
}

.hero-media {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 54%, rgba(255, 255, 255, 0.34)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.2) 60%);
}

.hero .eyebrow,
.section-kicker,
.contact-section .section-kicker,
.brief-output label,
.toolkit-summary strong,
.experience-popover b {
  color: var(--coral);
}

.hero-copy,
.ai-grid p,
.contact-section p,
.toolkit-hero p,
.toolkit-summary span {
  color: var(--muted);
}

.button {
  border-color: var(--line);
  box-shadow: none;
}

.button.primary,
.button.ghost,
.filter-button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button.secondary {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(70, 191, 232, 0.08);
}

.work-section,
.board-section,
.solution-section,
.leadership-section,
.pricing-section,
.ocm-section,
.toolkit-page,
.site-footer {
  background: #ffffff;
}

.section,
.trust-strip,
.work-section,
.solution-section,
.board-section,
.leadership-section,
.pricing-section,
.contact-section,
.ocm-section,
.site-footer {
  border-color: var(--line);
}

.trust-strip,
.solution-stack article,
.board-list div,
.ai-console,
.ai-output-grid article,
.project-card,
.service-grid article,
.leadership-panel,
.experience-map article,
.credential-list div,
.pricing-card,
.pricing-grid article,
.brief-builder,
.brief-output,
.ocm-preview article,
.toolkit-summary,
.artifact-card,
.artifact-card table,
.script-block,
.artifact-steps li {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.solution-stack span,
.ocm-preview span,
.artifact-number,
.project-meta span,
.grantguard-card .project-meta span,
.routesource-card .project-meta span,
.plumbflow-card .project-meta span,
.futures-card .project-meta span {
  background: var(--blue);
}

.project-meta span:nth-child(2),
.grantguard-card .project-meta span:nth-child(2),
.routesource-card .project-meta span:nth-child(2),
.plumbflow-card .project-meta span:nth-child(2),
.futures-card .project-meta span:nth-child(2) {
  background: var(--plum);
}

.board-list div,
.credential-list div,
.pricing-note,
.project-note,
.artifact-measure {
  border-left-color: var(--coral);
}

.ai-section,
.contact-section,
.toolkit-hero {
  background: #ffffff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.ai-console {
  color: var(--ink);
}

.ai-principles span,
.brief-builder,
.brief-output,
.toolkit-summary {
  border-color: var(--line);
  color: var(--muted);
}

.ai-action-row button,
.brief-builder input,
.brief-builder textarea,
.brief-builder select,
.brief-output textarea {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.brief-suggestions {
  border-color: var(--line);
  background: #f5f9fb;
}

.brief-examples span,
.brief-suggestions span {
  color: var(--blue);
}

.brief-examples button {
  border-color: var(--line);
  color: var(--blue);
  background: #ffffff;
}

.brief-examples button:hover,
.brief-examples button:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.brief-suggestions li {
  color: var(--muted);
}

.ai-output-grid span,
.pricing-lead span,
.pricing-grid span,
.script-block strong,
.artifact-card th {
  color: var(--blue);
}

.ai-timeline li,
.ai-timeline li:first-child,
.pricing-note,
.artifact-measure {
  background: #f5f9fb;
}

.grantguard-card,
.routesource-card,
.plumbflow-card,
.futures-card {
  background: #ffffff;
}

.app-card::before,
.grantguard-card::before,
.routesource-card::before,
.plumbflow-card::before,
.futures-card::before {
  background: var(--coral);
}

.project-shot,
.grantguard-card .project-shot,
.routesource-card .project-shot,
.plumbflow-card .project-shot,
.futures-card .project-shot {
  background: #eef4f7;
}

.concept-visual,
.concept-visual.accent {
  background: #eaf6fb;
  border: 1px solid var(--line);
}

.mini-toolbar span,
.concept-columns span,
.concept-rows span,
.flow-node,
.flow-pair span {
  background: rgba(20, 121, 190, 0.18);
}

.flow-line {
  background: rgba(20, 121, 190, 0.28);
}

.experience-map article:hover,
.experience-map article:focus {
  border-color: var(--coral);
  box-shadow: 0 12px 32px rgba(36, 40, 45, 0.08);
}

.experience-popover {
  background: var(--ink);
}

.linkedin-logo {
  background: #1479be;
  color: #ffffff;
}

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

h1 {
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.06;
}

.archive-case-card::before {
  background: #1479be;
}

.archive-preview {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #032d55, #075e9f) !important;
}

.archive-preview-bar {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.archive-preview strong {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.archive-preview-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.archive-preview-route i {
  display: block;
  border-top: 3px solid #8fc4e9;
}

.archive-preview-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  color: #d9edfb;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.erp-ops-preview {
  min-height: 315px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f8f4e9;
  text-decoration: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 230, 106, .42), transparent 25%),
    linear-gradient(145deg, #102326 0%, #0f6b67 100%);
}

.erp-ops-preview > span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.erp-ops-preview > strong {
  max-width: 550px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: .97;
  letter-spacing: -.045em;
}

.erp-ops-preview > div {
  display: flex;
  gap: 8px;
}

.erp-ops-preview b {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .08em;
}
