:root {
  --ink: #0a1b32;
  --navy: #082346;
  --blue: #1766ac;
  --sky: #e7f3ff;
  --yellow: #ffc928;
  --yellow-soft: #fff4c7;
  --mint: #dff7ea;
  --mint-text: #126045;
  --coral: #ff6b4a;
  --lavender: #eee9ff;
  --purple: #6044c7;
  --text: #33445e;
  --muted: #586377;
  --line: #dce5f2;
  --surface: #f7f9fc;
  --warm: #fff8e8;
  --panel: #ffffff;
  --shadow: 0 18px 42px rgba(8, 35, 70, .1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

picture {
  display: contents;
}

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  transition: top .15s ease;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 229, 242, .9);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.brand small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.navlinks a {
  position: relative;
  padding: 29px 0;
}

.navlinks a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform .18s ease;
}

.navlinks a:hover::after,
.navlinks a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 12px 18px;
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 35, 70, .12);
}

.btn.primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.btn.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.btn.small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 14px;
}

.btn.ghost {
  border-color: var(--line);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #ffffff 0%, #f6fbff 42%, #fff8e8 72%, #e9f8ef 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: #a96e00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero h1,
.project-hero h1,
.legal-page h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.section h2,
.cta-band h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 43px;
  line-height: 1.08;
  font-weight: 900;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #263952;
  font-size: 20px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-item {
  border: 1px solid rgba(8, 35, 70, .12);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, .72);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lab-board {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(8, 35, 70, .1);
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(8, 35, 70, .14);
}

.lab-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(231, 243, 255, .55), rgba(255, 255, 255, 0) 120px);
  pointer-events: none;
}

.project-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface);
}

.lab-board > * {
  position: relative;
  z-index: 1;
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
}

.board-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.board-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.board-logo strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}

.board-logo span {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #b8e7cc;
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--mint);
  color: var(--mint-text);
  font-size: 12px;
  font-weight: 900;
}

.status-light::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1fbe72;
}

.venture-node .mark,
.project-mark,
.project-logo,
.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.venture-map {
  display: grid;
  gap: 10px;
}

.venture-node {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px 13px 18px;
  background: #ffffff;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.venture-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
}

.venture-node.fast::before { background: var(--blue); }
.venture-node.heliora::before { background: var(--yellow); }
.venture-node.skillio::before { background: var(--purple); }

.venture-node:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 35, 70, .18);
  box-shadow: 0 12px 28px rgba(8, 35, 70, .12);
}

.venture-node .mark {
  width: 44px;
  height: 44px;
  font-size: 17px;
}

.venture-node.fast .mark { background: var(--blue); }
.venture-node.heliora .mark { background: #c8920a; }
.venture-node.skillio .mark { background: var(--purple); }

.venture-text {
  min-width: 0;
}

.venture-node h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.venture-node p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-pill,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--yellow-soft);
  color: #735000;
  font-size: 12px;
  font-weight: 900;
}

.stage-pill.green,
.chip.green {
  background: var(--mint);
  color: var(--mint-text);
}

.stage-pill.blue,
.chip.blue {
  background: var(--sky);
  color: #14528c;
}

.stage-pill.purple,
.chip.purple {
  background: var(--lavender);
  color: var(--purple);
}

.board-metric {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.board-metric div {
  padding: 14px;
  border-right: 1px solid var(--line);
}

.board-metric div:last-child {
  border-right: 0;
}

.board-metric strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
}

.board-metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.board-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
  padding: 14px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
}

.flow-step {
  position: relative;
  display: grid;
  gap: 1px;
  padding-left: 16px;
}

.flow-dot {
  position: absolute;
  left: 0;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.flow-step:nth-child(2) .flow-dot { background: #4da3ff; }
.flow-step:nth-child(3) .flow-dot { background: #36d58a; }

.flow-step strong {
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
}

.flow-step span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .68);
}

.section {
  padding: 76px 0;
}

.section.soft {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section.sky {
  background: #f1f8ff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 20px;
}

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

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.spec,
.mini,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(8, 35, 70, .06);
}

.card {
  padding: 24px;
}

.card h3,
.spec h3,
.mini h3,
.step-card h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
}

.card p,
.spec p,
.mini p,
.step-card p {
  margin-bottom: 0;
}

.icon-box {
  margin-bottom: 16px;
  background: var(--yellow-soft);
  color: var(--ink);
}

.icon-box.blue {
  background: var(--sky);
  color: #14528c;
}

.icon-box.green {
  background: var(--mint);
  color: var(--mint-text);
}

.icon-box.coral {
  background: #ffe5dd;
  color: #9d2d17;
}

.icon-box.purple {
  background: var(--lavender);
  color: var(--purple);
}

.project-card {
  display: grid;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(8, 35, 70, .16);
}

/* Solid pill that stays legible on top of any photo */
.project-top .chip {
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(8, 35, 70, .22);
  gap: 7px;
}

.project-top .chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.project-top.heliora .chip::before { background: #d49e17; }
.project-top.skillio .chip::before { background: var(--purple); }

.project-top {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

/* Subtle, even scrim: keeps top chip/monogram and bottom edge legible, photo stays bright in the middle */
.project-top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 35, 70, .42) 0%, rgba(8, 35, 70, 0) 34%),
    linear-gradient(0deg, rgba(8, 35, 70, .28) 0%, rgba(8, 35, 70, 0) 26%);
}

/* Thin brand-colored accent strip along the bottom of the photo */
.project-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  background: var(--blue);
}

.project-top.heliora::before { background: #d49e17; }
.project-top.skillio::before { background: var(--purple); }

.project-top > *:not(.project-top-photo) {
  position: relative;
  z-index: 3;
}

.project-top-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-logo {
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .28);
}

.project-body {
  display: grid;
  align-content: start;
  grid-template-rows: auto 1fr auto;
  padding: 22px;
}

.project-body h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  transition: transform .18s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.step-card {
  position: relative;
  min-height: 222px;
  padding: 24px;
}

.step-card::before {
  counter-increment: process;
  content: "0" counter(process);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.info-bar {
  margin-top: 22px;
  border: 1px solid #bdd8f2;
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #f5fbff;
  color: var(--ink);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.feature-panel {
  border-left: 5px solid var(--yellow);
}

.founder {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.portrait {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff8e8, #eaf5ff);
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
}

.partners-list,
.partner-grid {
  display: grid;
  gap: 14px;
}

.partner-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
}

.partner-logo {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.partner-logo span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.out {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 22px;
  background: #ffffff;
}

.proof-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: var(--radius);
  padding: 34px;
  background: var(--ink);
  color: #dfe9f7;
}

.cta-band h2 {
  color: #ffffff;
  margin-bottom: 9px;
}

.cta-band p {
  margin-bottom: 0;
}

.footer {
  padding: 38px 0;
  background: var(--ink);
  color: #d7e3f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1fr;
  gap: 28px;
}

.footer .brand {
  color: #ffffff;
  font-size: 24px;
}

.footer .brand small {
  color: #b9c7d9;
}

.footer p {
  margin-bottom: 0;
}

.footer-title {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer a:hover {
  color: #ffffff;
}

.project-hero {
  padding: 76px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 54%, #fff8e8 100%);
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: 52px;
}

.breadcrumb {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.project-visual {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.project-visual .project-mark {
  width: 72px;
  height: 72px;
  font-size: 28px;
}

.project-visual.fast .project-mark {
  background: linear-gradient(135deg, #082346, #1766ac);
}

.project-visual.heliora .project-mark {
  background: linear-gradient(135deg, #104c5f, #f0b72d);
}

.project-visual.skillio .project-mark {
  background: linear-gradient(135deg, #35256e, #7a57ff);
}

.signal-bars {
  display: grid;
  gap: 10px;
}

.signal-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--sky);
}

.signal-bars span:nth-child(1) {
  width: 88%;
}

.signal-bars span:nth-child(2) {
  width: 68%;
  background: var(--yellow-soft);
}

.signal-bars span:nth-child(3) {
  width: 78%;
  background: var(--mint);
}

.metric-grid,
.spec-grid,
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.spec,
.mini {
  padding: 22px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.roadmap,
.need-list {
  display: grid;
  gap: 14px;
}

.roadmap-item,
.need-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #ffffff;
}

.roadmap-item span,
.need-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--yellow-soft);
  color: var(--ink);
  font-weight: 900;
}

.roadmap-item h3,
.need-item h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.roadmap-item p,
.need-item p {
  margin-bottom: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--yellow);
  background: var(--yellow);
}

.legal-page {
  padding: 64px 0;
}

.legal-page h2 {
  margin-top: 32px;
  color: var(--ink);
  font-size: 26px;
}

.legal-page p,
.legal-page li {
  max-width: 920px;
}

code {
  border-radius: 6px;
  padding: 2px 5px;
  background: var(--surface);
  color: var(--ink);
}

@media (max-width: 1080px) {
  .cards.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .lab-board,
  .project-visual {
    max-width: 720px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 30px, var(--max));
  }

  .nav {
    min-height: 70px;
  }

  .navlinks {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .nav.open .navlinks {
    position: absolute;
    top: 70px;
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.open .navlinks a {
    padding: 14px 12px;
  }

  .nav.open .navlinks a::after {
    display: none;
  }

  .nav > .btn {
    display: none;
  }

  .hero h1,
  .project-hero h1,
  .legal-page h1 {
    font-size: 54px;
  }

  .section h2,
  .cta-band h2 {
    font-size: 36px;
  }

  .section-head,
  .cta-band {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
  }

  .cards.three,
  .cards.four,
  .cards.five,
  .process,
  .split,
  .footer-grid,
  .metric-grid,
  .spec-grid,
  .status-grid,
  .detail-layout,
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, var(--max));
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero,
  .project-hero {
    padding: 52px 0 46px;
  }

  .hero h1,
  .project-hero h1,
  .legal-page h1 {
    font-size: 42px;
  }

  .section h2,
  .cta-band h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-proof,
  .cards.two,
  .cards.three,
  .cards.four,
  .cards.five,
  .process,
  .split,
  .footer-grid,
  .metric-grid,
  .spec-grid,
  .status-grid,
  .detail-layout,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .venture-node,
  .venture-node:nth-child(n) {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto;
    margin-left: 0;
    column-gap: 12px;
  }

  .venture-node .stage-pill {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .venture-node h3 {
    padding-right: 78px;
  }

  .board-metric,
  .partner-row,
  .founder {
    grid-template-columns: 1fr;
  }

  .board-flow {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }

  .flow-step strong {
    font-size: 13px;
  }

  .flow-step span {
    font-size: 10.5px;
  }

  .board-metric div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .board-metric div:last-child {
    border-bottom: 0;
  }

  .partner-row {
    gap: 10px;
  }

  .cta-row .btn,
  .cta-band .btn {
    width: 100%;
  }
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-intro h2 {
  margin-top: 0;
}

.contact-alt {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form .field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 102, 172, .18);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-form .btn {
    width: 100%;
    justify-self: stretch;
  }
}
