:root {
  --black: #050505;
  --ink: #282828;
  --paper: #faf6f5;
  --white: #ffffff;
  --muted: #888888;
  --line: #ded9d4;
  --line-dark: rgba(255, 255, 255, 0.12);
  --amber: #cfa548;
  --amber-dark: #b8923e;
  --green: #2f7d5b;
  --red: #9f3a38;
  --blue-gray: #52677a;
  --signal-blue: #bceeff;
  --signal-blue-soft: rgba(188, 238, 255, 0.78);
  --signal-blue-faint: rgba(188, 238, 255, 0.24);
  --signal-white: rgba(245, 253, 255, 0.88);
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.12);
  --radius: 8px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 86px;
  padding: 14px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.38) 58%, rgba(5, 5, 5, 0));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(5, 5, 5, 0.86);
  border-bottom-color: var(--line-dark);
  backdrop-filter: blur(14px);
}

.brand-link {
  border: 0;
  background: transparent;
  padding: 0;
}

.brand-link img {
  width: 180px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav button,
.header-cta {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.desktop-nav button:hover {
  color: var(--amber);
}

.desktop-nav button.active {
  color: var(--amber);
}

.desktop-nav .header-cta,
.desktop-nav .header-cta.active {
  min-height: 42px;
  border: 1px solid var(--amber);
  background: var(--amber);
  padding: 0 18px;
  color: var(--white);
  text-shadow: none;
}

.desktop-nav .header-cta:hover {
  border-color: #b98e34;
  background: #b98e34;
  color: var(--white);
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.mobile-nav nav button {
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.mobile-nav nav button:last-child {
  border-bottom: 0;
}

.mobile-nav nav button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--amber);
}

.mobile-nav nav .mobile-nav-cta {
  background: var(--amber);
  color: var(--white);
  font-weight: 760;
}

.mobile-nav nav .mobile-nav-cta:hover {
  background: #b98e34;
  color: var(--white);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--amber);
  color: var(--white);
  transition: background 160ms ease;
}

.header-cta:hover {
  background: var(--amber-dark);
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--black);
}

.hero--editorial {
  min-height: 70vh;
}

.hero--compact {
  min-height: 54vh;
}

.hero-media,
.hero-overlay,
.constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  opacity: 0.72;
}

.hero--editorial .hero-media {
  opacity: 0.88;
}

.hero--route-founder .hero-media {
  left: -15%;
  width: 122%;
  max-width: none;
  transform: translateX(12%);
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.48) 48%, rgba(5, 5, 5, 0.1)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.44), transparent 42%);
}

.hero--light .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.38) 48%, rgba(5, 5, 5, 0.08)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.05) 56%);
}

.hero--dark .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.46) 48%, rgba(5, 5, 5, 0.12)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.5), transparent 44%);
}

.constellation {
  z-index: 1;
}

.hero-icon-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-connection-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.74;
  mix-blend-mode: screen;
}

.connection-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.connection-line-base {
  stroke: rgba(188, 238, 255, 0.3);
  stroke-width: 0.72;
}

.connection-line-signal {
  stroke: rgba(232, 250, 255, 0.68);
  stroke-width: 0.68;
  stroke-dasharray: 2 44;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 7px rgba(158, 229, 245, 0.22));
  animation: networkTrace 8.8s ease-in-out infinite;
}

.connection-node {
  fill: rgba(236, 252, 255, 0.72);
  filter: drop-shadow(0 0 5px rgba(158, 229, 245, 0.34));
  opacity: 0.62;
  animation: nodeBreathe 6.4s ease-in-out infinite;
}

.hero-orbit-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(78px, 7vw, 112px);
  aspect-ratio: 1;
  color: var(--signal-blue-soft);
  border-radius: 999px;
  opacity: 0.84;
  filter: drop-shadow(0 0 12px rgba(126, 207, 228, 0.22));
  mix-blend-mode: screen;
  animation: iconFloat 9.2s ease-in-out infinite, iconBreathe 6.2s ease-in-out infinite;
  animation-delay: var(--delay);
}

.hero-orbit-icon::before,
.hero-orbit-icon::after {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(188, 238, 255, 0.1);
  border-radius: inherit;
  content: "";
}

.hero-orbit-icon::after {
  inset: -3%;
  opacity: 0;
  border-color: rgba(188, 238, 255, 0.14);
  animation: iconHalo 6.2s ease-out infinite;
  animation-delay: var(--delay);
}

.hero-orbit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.hud-ring,
.hud-arc,
.hud-tick,
.hud-glyph,
.globe-grid,
.globe-links {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.hud-ring-outer {
  stroke-width: 0.58;
  opacity: 0.44;
}

.hud-ring-middle {
  stroke-width: 0.72;
  opacity: 0.34;
}

.hud-ring-inner {
  stroke-width: 0.62;
  opacity: 0.2;
}

.hud-arc {
  stroke: var(--signal-white);
  stroke-width: 1.15;
  opacity: 0.68;
  stroke-dasharray: 15 18;
  transform-origin: 50px 50px;
  animation: hudArcDrift 22s linear infinite;
}

.globe-svg .hud-arc {
  transform-origin: 60px 60px;
}

.hud-arc-b {
  animation-direction: reverse;
  opacity: 0.56;
}

.hud-arc-c {
  animation-duration: 28s;
  opacity: 0.46;
}

.hud-tick {
  stroke-width: 0.75;
  opacity: 0.22;
}

.hud-glyph {
  stroke-width: 1.95;
  opacity: 0.94;
}

.icon-mesh .hud-glyph circle,
.hud-nodes circle {
  fill: currentColor;
  stroke: none;
  opacity: 0.9;
}

.globe-grid {
  stroke-width: 0.92;
  opacity: 0.72;
}

.globe-links {
  stroke-width: 0.62;
  opacity: 0.5;
}

.hero-orbit-icon--globe {
  width: clamp(132px, 13vw, 190px);
  color: rgba(220, 249, 255, 0.88);
  opacity: 0.92;
  filter: drop-shadow(0 0 22px rgba(158, 229, 245, 0.28));
}

.icon-insight {
  top: 17%;
  left: 43%;
}

.icon-structure {
  top: 39%;
  left: 48%;
}

.icon-globe {
  top: 11.5%;
  left: 53.2%;
}

.icon-org {
  top: 18%;
  right: 19.5%;
}

.icon-mesh {
  top: 38.5%;
  right: 25.5%;
}

.icon-people {
  top: 31%;
  right: 10.5%;
}

.icon-growth {
  top: 31.5%;
  right: 1.3%;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  width: 100%;
  min-height: 86vh;
  margin: 0;
  padding: 136px clamp(20px, 5vw, 72px) 70px;
}

.hero--editorial .hero-inner {
  min-height: 70vh;
  padding-bottom: 58px;
}

.hero--compact .hero-inner {
  min-height: 54vh;
  padding-bottom: 48px;
}

.hero--editorial .hero-copy {
  max-width: 760px;
}

.hero-copy {
  max-width: 820px;
}

.hero--route-home .hero-copy,
.hero--route-home h1 {
  max-width: 1020px;
}

.hero--route-home h1 {
  font-size: clamp(44px, 4.5vw, 58px);
}

.hero--route-home .hero-lead {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--amber);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.48;
}

.hero--editorial h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.06;
}

.hero--editorial .hero-lead {
  max-width: 640px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.52;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-action {
  background: var(--amber);
  color: var(--white);
}

.secondary-action {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.primary-action.light {
  background: var(--amber);
  color: var(--white);
}

.secondary-action.dark {
  border-color: var(--line);
  color: var(--ink);
}

.secondary-action.dark:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-action span {
  color: var(--amber);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-action:hover span {
  transform: translateX(4px);
}

.intelligence-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.panel-kicker {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-row {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 24px 0 22px;
  border-bottom: 1px solid var(--line-dark);
}

.score-row strong {
  color: var(--white);
  font-size: 74px;
  font-weight: 300;
  line-height: 0.88;
}

.score-row span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.mini-bars {
  display: grid;
  gap: 16px;
  padding: 22px 0;
}

.mini-bar span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.mini-bar i,
.pillar-bar,
.fit-meter,
.room-bar {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mini-bar i::after,
.pillar-bar i,
.fit-meter i,
.room-bar i {
  display: block;
  width: var(--bar, 0);
  height: 100%;
  border-radius: inherit;
  background: var(--amber);
  content: "";
}

.panel-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.surface {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-grid {
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  margin-bottom: 84px;
}

.section-grid.two {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

h2 {
  margin-top: 16px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.thesis-list {
  display: grid;
  gap: 14px;
}

.thesis-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.thesis-item > span {
  color: var(--amber);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
}

.thesis-item h3,
.criteria-panel h3,
.task-list h3,
.portal-side h3,
.table-head h3,
.evidence-drawer h3,
.data-room h3,
.memo-block h3 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
}

.thesis-item p,
.criteria-panel li,
.task-list p,
.portal-side p,
.memo-block p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.band {
  margin: 0 calc(50% - 50vw) 84px;
  padding: 74px max(20px, calc((100vw - 1180px) / 2));
}

.dark-band {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.dark-band::before {
  position: absolute;
  inset: 0;
  background: url("../public/assets/images/home/hero_home_constelacao_dark.webp") center / cover;
  opacity: 0.16;
  content: "";
}

.dark-band > * {
  position: relative;
}

.dark-band h2 {
  color: var(--white);
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 1px;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
}

.journey-step {
  min-height: 116px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.journey-step i {
  display: block;
  color: var(--amber);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
  font-style: normal;
}

.journey-step span {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.criteria-panel {
  min-height: 256px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.criteria-panel.positive {
  border-top: 3px solid var(--green);
}

.criteria-panel.negative {
  border-top: 3px solid var(--red);
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  margin: 84px 0;
}

.editorial-band.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.editorial-band.reverse .editorial-media {
  order: 2;
}

.editorial-band.reverse .editorial-copy {
  order: 1;
}

.editorial-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.editorial-copy {
  max-width: 620px;
}

.editorial-copy h2 {
  margin-top: 16px;
}

.editorial-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.signal-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.58;
}

.signal-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.signal-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 64px 0 84px;
  border: 1px solid var(--line);
  background: var(--line);
}

.signal-rail article {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
}

.signal-rail strong {
  display: block;
  color: var(--amber);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
}

.signal-rail span {
  display: block;
  margin-top: 38px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

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

.home-block-grid,
.info-card-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.venture-card,
.process-item,
.fit-question,
.fit-result,
.internal-boundary,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.venture-card,
.faq-list article {
  padding: 26px;
}

.venture-card.compact {
  min-height: 206px;
}

.venture-card h3,
.process-item h3,
.fit-question h3,
.fit-result h3,
.faq-list h3,
.internal-boundary h2 {
  color: var(--ink);
}

.venture-card h3,
.process-item h3,
.fit-question h3,
.fit-result h3,
.faq-list h3 {
  font-size: 17px;
  font-weight: 780;
}

.venture-card p,
.process-item p,
.fit-result p,
.faq-list p,
.internal-boundary p,
.application-aside p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.venture-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
}

.process-item > span,
.fit-question > div:first-child span,
.fit-result span {
  color: var(--amber);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.fit-check-shell,
.application-intake {
  display: grid;
  gap: 26px;
}

.fit-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee8e3;
}

.fit-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--amber);
}

.fit-question-list {
  display: grid;
  gap: 14px;
}

.fit-question {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.fit-question > div:first-child {
  display: grid;
  gap: 10px;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.choice-option {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf8;
  padding: 0 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.choice-option:hover,
.choice-option.selected {
  border-color: var(--amber);
  background: rgba(207, 165, 72, 0.12);
}

.choice-option.selected {
  color: var(--black);
}

.application-intake {
  scroll-margin-top: 92px;
}

.application-intake .choice-option {
  min-height: 44px;
}

.fit-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border-left: 3px solid var(--amber);
}

.fit-result > div {
  max-width: 760px;
}

.apply-layout,
.portal-grid,
.scoring-grid,
.committee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.apply-form-shell,
.portal-main,
.score-main,
.memo-preview,
.fit-sidebar,
.portal-side,
.evidence-drawer,
.data-room,
.table-shell {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.apply-form-shell,
.portal-main,
.score-main,
.memo-preview,
.table-shell {
  padding: 30px;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wide-field {
  grid-column: span 2;
}

.apply-form label {
  display: grid;
  gap: 8px;
}

.apply-form span,
.file-field span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.apply-form input,
.apply-form select {
  min-height: 46px;
  padding: 0 12px;
}

.apply-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px;
  font: inherit;
  line-height: 1.5;
}

.file-field {
  grid-column: span 2;
  min-height: 76px;
  justify-content: center;
  border: 1px dashed #bfb8b0;
  border-radius: var(--radius);
  padding: 15px;
  background: #fbfaf8;
}

.file-field input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.file-field strong {
  color: var(--amber);
  font-size: 14px;
}

.consent-field {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding-top: 6px;
}

.consent-field input {
  min-height: 18px;
  margin: 0;
  accent-color: var(--amber);
}

.consent-field span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.application-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.step-pill.active {
  border-color: var(--ink);
  color: var(--ink);
}

.step-pill.complete {
  border-color: rgba(47, 125, 91, 0.34);
  color: var(--green);
}

.application-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.application-confirmation {
  display: grid;
  justify-items: start;
  max-width: 860px;
  min-height: 420px;
  align-content: center;
  gap: 18px;
  scroll-margin-top: 92px;
}

.application-confirmation h2 {
  max-width: 680px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.application-confirmation p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

.application-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.application-aside {
  border-bottom: 1px solid var(--line);
}

.application-aside:last-child {
  border-bottom: 0;
}

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

.upload-grid .file-field {
  grid-column: auto;
}

.application-consent {
  margin-top: 18px;
}

.fit-sidebar {
  display: grid;
  gap: 16px;
}

.fit-card,
.next-steps,
.portal-side > div,
.evidence-drawer,
.data-room {
  padding: 24px;
}

.fit-card {
  background: var(--black);
  border-radius: var(--radius) var(--radius) 0 0;
}

.fit-card strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 72px;
  font-weight: 300;
  line-height: 0.92;
}

.fit-card > span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.fit-meter {
  margin-top: 22px;
}

.fit-meter i,
.pillar-bar i,
.room-bar i {
  background: var(--amber);
}

.fit-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.next-steps ol {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.status-step {
  min-height: 118px;
  padding: 18px;
  background: var(--white);
}

.status-step i {
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #bcb6ae;
  border-radius: 999px;
}

.status-step.done i {
  border-color: var(--green);
  background: var(--green);
}

.status-step.current i {
  border-color: var(--amber);
  background: var(--amber);
}

.status-step span {
  display: block;
  margin-top: 32px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.task-list {
  margin-top: 28px;
}

.task-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.task-list h4 {
  color: var(--ink);
  font-size: 15px;
}

.task-list article > span {
  align-self: start;
  min-width: max-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.portal-side {
  overflow: hidden;
}

.portal-side img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.document-checklist {
  border-top: 1px solid var(--line);
}

.document-checklist div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.document-checklist div:first-of-type {
  margin-top: 12px;
}

.document-checklist i {
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.faq-list article {
  min-height: 164px;
}

.internal-boundary {
  max-width: 780px;
  padding: 34px;
  border-left: 3px solid var(--amber);
}

.internal-boundary strong {
  display: inline-flex;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 12px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-card strong {
  display: block;
  color: var(--black);
  font-size: 34px;
  font-weight: 350;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chips button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.filter-chips button.active {
  border-color: var(--ink);
  color: var(--ink);
}

.deal-table {
  display: grid;
  border: 1px solid var(--line);
  overflow-x: auto;
}

.deal-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.4fr) minmax(170px, 1fr) minmax(90px, 0.6fr) minmax(100px, 0.7fr) minmax(100px, 0.7fr);
  min-width: 780px;
  border: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.deal-row:first-child {
  border-top: 0;
}

.deal-row span {
  padding: 16px;
  font-size: 13px;
}

.deal-row.header {
  background: #f5f1ef;
  color: var(--muted);
  font-weight: 800;
}

.deal-row:not(.header):hover {
  background: #fbfaf8;
}

.startup-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.startup-header p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.score-total {
  min-width: 158px;
  text-align: right;
}

.score-total strong {
  display: block;
  color: var(--black);
  font-size: 64px;
  font-weight: 300;
  line-height: 0.9;
}

.score-total span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.score-total .trace-meta {
  justify-content: flex-end;
}

.gate-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.gate-strip div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.gate-strip i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--muted);
}

.gate-strip .passed i {
  background: var(--green);
}

.gate-strip .review i {
  background: var(--amber);
}

.gate-strip small {
  flex-basis: 100%;
  margin-left: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.pillar-list {
  display: grid;
  gap: 12px;
}

.pillar-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pillar-list article.priority {
  border-left: 3px solid var(--amber);
}

.pillar-title,
.pillar-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.pillar-title p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pillar-title h3 {
  font-size: 15px;
}

.pillar-title span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.pillar-bar {
  margin: 14px 0 10px;
  background: #eee8e3;
}

.pillar-meta {
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.traceability-list {
  gap: 16px;
}

.trace-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.trace-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--muted);
  content: "";
}

.trace-card.green::before {
  background: var(--green);
}

.trace-card.amber::before {
  background: var(--amber);
}

.trace-card.red::before {
  background: var(--red);
}

.trace-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.confidence-pill,
.review-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: #fbfaf8;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.review-pill::before {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--muted);
  content: "";
}

.review-pill.green::before {
  background: var(--green);
}

.review-pill.amber::before {
  background: var(--amber);
}

.review-pill.red::before {
  background: var(--red);
}

.trace-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.evidence-group {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: #fbfaf8;
}

.evidence-group > div {
  display: grid;
  gap: 4px;
}

.evidence-group strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.evidence-group small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.evidence-group ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-group li {
  position: relative;
  padding-left: 15px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.48;
}

.evidence-group li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--muted);
  content: "";
}

.evidence-group--facts li::before {
  background: var(--green);
}

.evidence-group--inferences li::before,
.evidence-group--recommendations li::before {
  background: var(--amber);
}

.evidence-group--gaps li::before {
  background: var(--red);
}

.trace-sidebar strong {
  color: var(--ink);
  font-size: 13px;
}

.memo-conclusion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.memo-conclusion-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  gap: 20px;
  align-items: start;
}

.memo-conclusion-head h3 {
  color: var(--ink);
  font-size: 16px;
}

.memo-conclusion-head p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.committee-grid .score-total strong {
  font-size: 46px;
  line-height: 0.96;
}

.evidence-drawer {
  display: grid;
  gap: 14px;
}

.evidence-drawer article {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.evidence-drawer article i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
}

.evidence-drawer .green i {
  background: var(--green);
}

.evidence-drawer .amber i {
  background: var(--amber);
}

.evidence-drawer .red i {
  background: var(--red);
}

.evidence-drawer p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.override-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fbfaf8;
}

.override-box h4 {
  color: var(--ink);
  font-size: 14px;
}

.override-box p {
  margin-top: 8px;
}

.memo-preview {
  display: grid;
  gap: 16px;
}

.memo-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.memo-block.muted {
  border-left: 3px solid var(--amber);
  background: #fbfaf8;
}

.data-room {
  display: grid;
  gap: 18px;
}

.data-room article {
  display: grid;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.data-room article:last-child {
  border-bottom: 0;
}

.data-room div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.data-room small {
  color: var(--muted);
  text-align: right;
  font-weight: 650;
}

.room-bar {
  background: #eee8e3;
}

/* SCC-inspired internal operating layer. Public Gateway styles above remain website-oriented. */
.internal-app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #edeae5;
  color: #1a1816;
}

.system-command-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(188px, 0.7fr) minmax(0, auto) minmax(150px, 0.7fr);
  align-items: center;
  gap: 18px;
  min-height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0b0a;
  padding: 8px clamp(16px, 2.4vw, 26px);
}

.system-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #faf6f5;
  text-align: left;
}

.system-brand-lockup img {
  width: 160px;
}

.system-brand-lockup span {
  border-left: 2px solid var(--amber);
  padding-left: 12px;
  color: #8a8d91;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.system-mode-tabs {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #181614;
  padding: 4px;
}

.system-mode-tabs button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  padding: 0 12px;
  color: #8a8d91;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.02em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.system-mode-tabs button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #faf6f5;
}

.system-mode-tabs button.active {
  border-color: var(--amber);
  background: var(--amber);
  color: #0c0b0a;
}

.system-command-meta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.system-command-meta span {
  color: #a7acac;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.system-command-meta strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--amber);
  color: #0c0b0a;
  font-size: 10px;
}

.internal-app {
  --internal-panel: #fff;
  --internal-panel-soft: #fbf8f2;
  --internal-line: #e1ddd6;
  --internal-muted: #6f6a63;
  --internal-shadow: 0 1px 3px rgba(0, 0, 0, 0.045);
}

.internal-stage {
  min-width: 0;
  min-height: calc(100dvh - 70px);
}

.internal-context-bar {
  position: sticky;
  top: 70px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 8px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid #d9d2c8;
  background: rgba(237, 234, 229, 0.92);
  backdrop-filter: blur(16px);
}

.internal-context-bar strong {
  display: block;
  margin-top: 2px;
  color: #1a1816;
  font-size: 13px;
}

.internal-context-bar span {
  color: var(--internal-muted);
  font-size: 10px;
  font-weight: 680;
  line-height: 1.4;
}

.internal-context-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.internal-context-meta span {
  border: 1px solid var(--internal-line);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--internal-panel);
  color: #1a1816;
  font-weight: 750;
}

.internal-surface {
  width: min(100% - 34px, 1560px);
  margin: 0 auto;
  padding: 24px 0 56px;
}

.system-hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.system-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  min-width: 0;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(207, 165, 72, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 28%),
    #0c0b0a;
  color: #faf6f5;
  box-shadow: 0 20px 52px rgba(12, 11, 10, 0.16);
}

.system-hero-copy {
  align-self: end;
  padding: clamp(28px, 4vw, 48px);
}

.system-hero-copy h1 {
  max-width: 820px;
  margin-top: 18px;
  color: #faf6f5;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 300;
  line-height: 1;
}

.system-hero-copy p {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(250, 246, 245, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.system-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.system-hero-status {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  padding: clamp(22px, 3vw, 34px);
}

.system-hero-status > span,
.system-panel-head span,
.system-surface-kicker span {
  color: var(--amber);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.system-hero-status h2 {
  color: #faf6f5;
  font-size: 28px;
  font-weight: 360;
}

.system-hero-status p,
.system-hero-status small {
  color: rgba(250, 246, 245, 0.56);
  font-size: 12px;
  line-height: 1.55;
}

.system-score-module {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.system-score-module strong {
  color: #faf6f5;
  font-size: 42px;
  font-weight: 260;
}

.system-score-module span {
  display: block;
  margin-bottom: 10px;
  color: rgba(250, 246, 245, 0.58);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-metric-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.system-metric-strip article {
  min-height: 112px;
  border: 1px solid var(--internal-line);
  border-radius: 8px;
  background: var(--internal-panel);
  padding: 18px;
  box-shadow: var(--internal-shadow);
}

.system-metric-strip strong {
  display: block;
  color: #1a1816;
  font-size: 34px;
  font-weight: 300;
}

.system-metric-strip span {
  display: block;
  margin-top: 14px;
  color: var(--internal-muted);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.36;
}

.system-surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.system-surface-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
  border: 1px solid var(--internal-line);
  border-top: 3px solid #8a8d91;
  border-radius: 8px;
  background: var(--internal-panel);
  padding: 20px;
  box-shadow: var(--internal-shadow);
}

.system-surface-card.public {
  border-top-color: var(--amber);
  background:
    linear-gradient(145deg, rgba(207, 165, 72, 0.12), transparent 34%),
    var(--internal-panel);
}

.system-surface-card.console {
  border-top-color: #5d6b78;
}

.system-surface-card.committee {
  border-top-color: var(--green);
}

.system-surface-card.data {
  border-top-color: #8a8d91;
}

.system-surface-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.system-surface-kicker i {
  border: 1px solid var(--internal-line);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--internal-muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 820;
}

.system-surface-card h2 {
  color: #1a1816;
  font-size: 25px;
  font-weight: 360;
  line-height: 1.08;
}

.system-surface-card p {
  margin-top: 12px;
  color: var(--internal-muted);
  font-size: 13px;
  line-height: 1.55;
}

.system-surface-card dl {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
}

.system-surface-card dl div {
  border-top: 1px solid var(--internal-line);
  padding-top: 10px;
}

.system-surface-card dt {
  color: #89837a;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-surface-card dd {
  margin: 5px 0 0;
  color: #1a1816;
  font-size: 12px;
  font-weight: 730;
  line-height: 1.35;
}

.system-surface-card button {
  width: 100%;
}

.system-operating-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  min-width: 0;
}

.system-flow-panel,
.system-governance-panel {
  min-width: 0;
  border: 1px solid var(--internal-line);
  border-radius: 8px;
  background: var(--internal-panel);
  padding: 22px;
  box-shadow: var(--internal-shadow);
}

.system-panel-head h2 {
  margin-top: 10px;
  color: #1a1816;
  font-size: 28px;
  font-weight: 340;
  line-height: 1.12;
}

.system-flow-line {
  display: grid;
  grid-template-columns: repeat(9, minmax(112px, 1fr));
  gap: 8px;
  margin-top: 22px;
  overflow-x: auto;
}

.system-flow-line div {
  min-height: 118px;
  border: 1px solid var(--internal-line);
  border-radius: 8px;
  background: var(--internal-panel-soft);
  padding: 12px;
}

.system-flow-line i {
  color: var(--amber);
  font-size: 11px;
  font-style: normal;
  font-weight: 840;
}

.system-flow-line span {
  display: block;
  margin-top: 24px;
  color: #1a1816;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.32;
}

.system-governance-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.system-governance-panel li {
  position: relative;
  border-top: 1px solid var(--internal-line);
  padding: 13px 0 0 18px;
  color: var(--internal-muted);
  font-size: 13px;
  line-height: 1.5;
}

.system-governance-panel li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.internal-page-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(207, 165, 72, 0.16), transparent 36%),
    #0c0b0a;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 40px rgba(12, 11, 10, 0.1);
}

.internal-page-head h1 {
  max-width: 820px;
  color: #faf6f5;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1;
  font-weight: 300;
}

.internal-page-head p {
  max-width: 820px;
  margin-top: 16px;
  color: rgba(250, 246, 245, 0.62);
  font-size: 16px;
  line-height: 1.62;
}

.internal-page-head .secondary-action.dark {
  border-color: rgba(255, 255, 255, 0.24);
  color: #faf6f5;
}

.internal-page-head .secondary-action.dark:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.internal-page-actions {
  display: flex;
  align-items: end;
  gap: 10px;
  min-width: max-content;
}

.internal-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.internal-metrics article,
.pipeline-panel,
.deal-workspace,
.internal-list-panel,
.intelligence-record,
.intelligence-side,
.console-detail-side {
  border: 1px solid var(--internal-line);
  border-radius: 8px;
  background: var(--internal-panel);
  box-shadow: var(--internal-shadow);
}

.internal-metrics article {
  min-height: 108px;
  padding: 20px;
}

.internal-metrics strong {
  display: block;
  color: #1a1816;
  font-size: 34px;
  font-weight: 350;
}

.internal-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--internal-muted);
  font-size: 12px;
  font-weight: 740;
}

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

.pipeline-panel {
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 4px 0 0;
  box-shadow: none;
}

.deal-workspace {
  min-width: 0;
  padding: 24px;
  scroll-margin-top: 142px;
}

.pipeline-panel h2 {
  color: #1a1816;
  font-size: 22px;
}

.pipeline-panel p {
  margin-top: 6px;
  color: var(--internal-muted);
  font-size: 13px;
}

.pipeline-panel .filter-chips button {
  min-height: 44px;
}

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

.pipeline-deal-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  min-height: 156px;
  border: 1px solid var(--internal-line);
  border-radius: 8px;
  background: var(--internal-panel);
  padding: 16px;
  color: #1a1816;
  text-align: left;
  box-shadow: var(--internal-shadow);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pipeline-deal-card:hover {
  border-color: #b8b1a7;
  box-shadow: 0 5px 16px rgba(12, 11, 10, 0.07);
}

.pipeline-deal-card.selected {
  border-color: rgba(207, 165, 72, 0.9);
  background:
    linear-gradient(135deg, rgba(207, 165, 72, 0.11), transparent 44%),
    var(--internal-panel);
  box-shadow: inset 3px 0 0 var(--amber), var(--internal-shadow);
}

.pipeline-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pipeline-card-head > span {
  min-width: 0;
}

.pipeline-card-head strong {
  display: block;
  font-size: 15px;
}

.pipeline-card-head b {
  color: #1a1816;
  font-size: 30px;
  font-weight: 320;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.pipeline-deal-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.pipeline-card-status {
  display: grid;
  grid-template-columns: auto minmax(100px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--internal-line);
  font-size: 12px;
  font-weight: 750;
}

.pipeline-card-status small {
  margin: 0;
  text-align: right;
}

.pipeline-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.pipeline-card-meta span {
  border: 1px solid var(--internal-line);
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--internal-muted);
  font-size: 9px;
  font-weight: 780;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--muted);
}

.status-dot.green {
  background: var(--green);
}

.status-dot.amber {
  background: var(--amber);
}

.status-dot.red {
  background: var(--red);
}

.internal-list-panel.green {
  border-left: 3px solid var(--green);
}

.internal-list-panel.amber {
  border-left: 3px solid var(--amber);
}

.internal-list-panel.red {
  border-left: 3px solid var(--red);
}

.deal-operating-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.internal-list-panel {
  min-width: 0;
  padding: 18px;
  box-shadow: none;
}

.internal-list-panel h3 {
  color: var(--ink);
  font-size: 14px;
}

.internal-list-panel ul,
.compact-risk-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.internal-list-panel li,
.compact-risk-list li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.48;
}

.internal-list-panel li::before,
.compact-risk-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.internal-list-panel.red li::before {
  background: var(--red);
}

.internal-list-panel.green li::before {
  background: var(--green);
}

.doc-health-row {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.doc-health-row span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
}

.doc-health-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 650;
}

.console-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}

.console-detail-side {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 12px;
  border: 0;
  border-left: 1px solid var(--internal-line);
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 20px;
  box-shadow: none;
}

.full-action {
  width: 100%;
}

.ic-executive-summary {
  min-width: 0;
  border: 1px solid var(--internal-line);
  border-radius: 8px;
  background: var(--internal-panel);
  padding: 24px;
  box-shadow: var(--internal-shadow);
}

.ic-summary-strip {
  display: grid;
  grid-template-columns: minmax(320px, 1.6fr) repeat(3, minmax(170px, 0.8fr));
  margin-top: 20px;
  border: 1px solid var(--internal-line);
  border-radius: 8px;
  overflow: hidden;
}

.ic-summary-strip article {
  min-width: 0;
  min-height: 142px;
  border-left: 1px solid var(--internal-line);
  padding: 18px;
  background: #fbfaf8;
}

.ic-summary-strip article:first-child {
  border-left: 0;
}

.ic-summary-strip article > span,
.ic-brief-card > span,
.ic-rail-heading > span {
  color: #8c6b21;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ic-summary-strip article > strong {
  display: block;
  margin-top: 16px;
  color: #1a1816;
  font-size: 21px;
  font-weight: 520;
  line-height: 1.14;
}

.ic-summary-strip article > p {
  margin-top: 8px;
  color: var(--internal-muted);
  font-size: 11px;
  line-height: 1.45;
}

.ic-summary-strip .ic-decision-request {
  border-left: 3px solid var(--amber);
  background:
    linear-gradient(135deg, rgba(207, 165, 72, 0.14), transparent 46%),
    #fbfaf8;
}

.ic-summary-strip .ic-decision-request strong {
  font-size: 24px;
}

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

.ic-brief-card {
  min-width: 0;
  min-height: 210px;
  border: 1px solid var(--internal-line);
  border-top: 3px solid #8a8d91;
  border-radius: 8px;
  background: var(--internal-panel);
  padding: 20px;
  box-shadow: var(--internal-shadow);
}

.ic-brief-card.structure {
  border-top-color: var(--amber);
}

.ic-brief-card.risk {
  border-top-color: var(--red);
}

.ic-brief-card.mitigant {
  border-top-color: var(--green);
}

.ic-brief-card h2 {
  margin-top: 18px;
  color: #1a1816;
  font-size: 24px;
  font-weight: 390;
  line-height: 1.15;
}

.ic-brief-card > p {
  margin-top: 12px;
  color: var(--internal-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ic-brief-card .compact-risk-list {
  margin-top: 20px;
}

.ic-dossier-workspace {
  min-width: 0;
  margin-top: 22px;
  border-top: 3px solid var(--amber);
}

.ic-dossier-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  min-width: 0;
  border-bottom: 1px solid var(--internal-line);
  padding: 20px 0;
}

.ic-dossier-head h2 {
  margin-top: 9px;
  color: #1a1816;
  font-size: 26px;
  font-weight: 430;
  line-height: 1.12;
}

.ic-dossier-head p {
  max-width: 720px;
  margin-top: 8px;
  color: var(--internal-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ic-audit-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, auto));
  align-self: stretch;
  border: 1px solid var(--internal-line);
  border-radius: 6px;
  background: var(--internal-panel);
}

.ic-audit-status span {
  display: grid;
  align-content: center;
  gap: 4px;
  min-width: 0;
  border-left: 1px solid var(--internal-line);
  padding: 12px 14px;
  color: var(--internal-muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.ic-audit-status span:first-child {
  border-left: 0;
}

.ic-audit-status strong {
  color: #1a1816;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: none;
}

.ic-dossier-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
  min-width: 0;
  padding-top: 20px;
}

.ic-memo-surface {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.ic-decision-rail {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 12px;
  min-width: 0;
  border-left: 1px solid var(--internal-line);
  padding-left: 20px;
}

.ic-rail-heading h3 {
  margin-top: 8px;
  color: #1a1816;
  font-size: 20px;
  font-weight: 500;
}

.ic-data-room-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--internal-line);
}

.ic-data-room-list article {
  display: grid;
  gap: 9px;
  border-bottom: 1px solid var(--internal-line);
  padding: 13px 0;
}

.ic-data-room-list article > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #1a1816;
  font-size: 12px;
  font-weight: 760;
}

.ic-data-room-list small {
  color: var(--internal-muted);
  text-align: right;
  font-weight: 650;
}

.ic-decision-rail .override-box {
  border-color: var(--internal-line);
  background: var(--internal-panel);
}

.ic-decision-rail .override-box > .trace-meta {
  justify-content: flex-start;
}

.ic-human-gate-box {
  border-left: 3px solid var(--amber) !important;
}

.intelligence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}

.intelligence-record {
  padding: 28px;
}

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

.data-domain-grid article {
  min-height: 152px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fbfaf8;
}

.data-domain-grid span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 850;
}

.data-domain-grid h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 16px;
}

.data-domain-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.intelligence-side {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.intelligence-flow {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ventures-home {
  overflow: hidden;
  background: var(--paper);
}

.home-thesis-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  padding-top: 110px;
  padding-bottom: 66px;
}

.home-thesis-statement h2 {
  max-width: 800px;
  font-size: clamp(36px, 4.6vw, 58px);
}

.home-thesis-context {
  padding-bottom: 5px;
}

.home-thesis-context p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
}

.home-thesis-context .text-action {
  margin-top: 26px;
}

.thesis-framework {
  padding-top: 34px;
  padding-bottom: 110px;
}

.thesis-framework .section-heading {
  max-width: 660px;
  margin-bottom: 48px;
}

.thesis-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thesis-framework-grid article {
  min-height: 318px;
  padding: 30px 28px 34px;
  border-left: 1px solid var(--line);
}

.thesis-framework-grid article:first-child {
  border-left: 0;
}

.framework-index {
  color: var(--amber);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
}

.thesis-framework-grid h3 {
  margin-top: 54px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.35;
}

.thesis-framework-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.thesis-framework-grid li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.thesis-framework-grid li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.capability-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  min-height: 780px;
  background: var(--black);
}

.capability-media {
  min-height: 100%;
  overflow: hidden;
}

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

.capability-copy {
  align-self: center;
  padding: clamp(64px, 8vw, 124px);
}

.capability-copy h2 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 54px);
}

.capability-copy > p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.72;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin-top: 44px;
}

.capability-list > div {
  min-height: 116px;
  border-top: 1px solid var(--line-dark);
  padding: 20px 0;
}

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

.capability-list strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.capability-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.55;
}

.audience-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.audience-heading {
  max-width: 850px;
  margin-bottom: 52px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.audience-primary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  min-height: 480px;
  background: var(--black);
}

.audience-primary > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-primary > div {
  align-self: center;
  padding: clamp(38px, 6vw, 76px);
}

.audience-primary span,
.audience-secondary > span,
.ventures-final-cta > div:first-child > span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-primary h3 {
  max-width: 620px;
  margin-top: 20px;
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 300;
  line-height: 1.08;
}

.audience-primary p {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.audience-primary .primary-action {
  margin-top: 28px;
}

.audience-secondary {
  min-height: 310px;
  background: var(--white);
  padding: clamp(30px, 4vw, 50px);
}

.audience-secondary h3 {
  max-width: 460px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 350;
  line-height: 1.14;
}

.audience-secondary p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.audience-secondary .text-action {
  margin-top: 28px;
}

.relationship-band {
  background: #f0ece8;
}

.relationship-band .surface {
  padding-top: 104px;
  padding-bottom: 104px;
}

.relationship-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
}

.relationship-heading h2 {
  max-width: 700px;
}

.relationship-heading > p {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.relationship-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid #cfc8c1;
  border-bottom: 1px solid #cfc8c1;
  list-style: none;
}

.relationship-steps li {
  min-height: 270px;
  border-left: 1px solid #cfc8c1;
  padding: 28px;
}

.relationship-steps li:first-child {
  border-left: 0;
}

.relationship-steps > li > span {
  color: var(--amber-dark);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
}

.relationship-steps h3 {
  margin-top: 62px;
  color: var(--ink);
  font-size: 18px;
}

.relationship-steps p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

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

.institutional-discipline {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
}

.institutional-copy h2 {
  max-width: 620px;
}

.institutional-copy > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.74;
}

.institutional-copy .text-action {
  margin-top: 28px;
}

.institutional-media {
  overflow: hidden;
  border: 1px solid var(--line);
}

.institutional-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ventures-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
  background: var(--black);
}

.ventures-final-cta h2 {
  max-width: 820px;
  color: var(--white);
}

.ventures-final-cta p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  line-height: 1.65;
}

.ventures-final-cta > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 58px clamp(20px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

.site-footer img {
  width: 176px;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  white-space: nowrap;
}

.footer-meta {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.footer-meta a,
.footer-meta button {
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-meta a:hover,
.footer-meta button:hover {
  color: var(--amber);
}

.capability-note {
  margin-top: 24px !important;
  border-left: 2px solid var(--amber);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.44) !important;
  font-size: 12px !important;
}

.public-editorial-page {
  overflow: hidden;
  background: var(--paper);
}

.editorial-opening {
  padding-top: 104px;
  padding-bottom: 88px;
}

.editorial-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.62fr);
  gap: clamp(52px, 9vw, 128px);
  align-items: end;
  margin-top: 24px;
}

.editorial-opening-grid h2 {
  max-width: 780px;
  font-size: clamp(36px, 4.3vw, 56px);
}

.editorial-opening-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
}

.editorial-dimensions,
.structure-paths,
.founder-situations,
.founder-value-grid,
.journey-detail-list,
.process-outcomes,
.faq-accordion {
  padding-top: 36px;
  padding-bottom: 108px;
}

.editorial-dimensions .section-heading,
.structure-paths .section-heading,
.process-outcomes .section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.message-dimension-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.message-dimension-grid article {
  min-height: 288px;
  border-left: 1px solid var(--line);
  padding: 28px 24px;
}

.message-dimension-grid article:first-child {
  border-left: 0;
}

.message-dimension-grid span,
.journey-detail-list > article > span {
  color: var(--amber-dark);
  font-family: Menlo, Consolas, monospace;
  font-size: 12px;
}

.message-dimension-grid h3 {
  margin-top: 54px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.message-dimension-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.maturity-band,
.preparation-band,
.process-principles-band {
  background: var(--black);
  color: var(--white);
}

.maturity-grid,
.preparation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.maturity-grid h2,
.preparation-grid h2,
.process-principles-band h2 {
  margin-top: 18px;
  color: var(--white);
}

.maturity-grid > div > p,
.preparation-grid > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.72;
}

.maturity-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.maturity-list li {
  position: relative;
  border-bottom: 1px solid var(--line-dark);
  padding: 15px 8px 15px 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.maturity-list li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.structure-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.structure-path-grid article {
  min-height: 180px;
  background: var(--white);
  padding: 28px;
}

.structure-path-grid h3 {
  color: var(--ink);
  font-size: 17px;
}

.structure-path-grid p {
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.compliance-note,
.fit-legal-note {
  max-width: 900px;
  margin-top: 28px;
  border-left: 2px solid var(--amber);
  padding-left: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.public-closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
  background: #151412;
}

.public-closing-cta > div:first-child > span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-closing-cta h2 {
  max-width: 820px;
  margin-top: 18px;
  color: var(--white);
}

.public-closing-cta p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  line-height: 1.65;
}

.public-closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.public-closing-actions .secondary-action {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.situation-grid article {
  min-height: 250px;
  background: var(--white);
  padding: clamp(28px, 4vw, 48px);
}

.situation-grid h3 {
  max-width: 460px;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 350;
  line-height: 1.16;
}

.situation-grid p {
  max-width: 520px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.founder-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
  padding-top: 108px;
}

.founder-value-grid > div:first-child > h2 {
  margin-top: 20px;
}

.founder-value-grid > div:first-child > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.founder-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.founder-value-list article {
  min-height: 190px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px;
}

.founder-value-list h3 {
  color: var(--ink);
  font-size: 17px;
}

.founder-value-list p {
  margin-top: 38px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.preparation-grid h2 {
  max-width: 620px;
}

.preparation-grid > p {
  margin-top: 0;
}

.journey-detail-list {
  display: grid;
  gap: 0;
  padding-top: 24px;
}

.journey-detail-list > article {
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.journey-detail-list > article:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-detail-list h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 450;
}

.journey-detail-list article > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.journey-detail-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.journey-detail-list p strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.process-principles-band .surface {
  padding-top: 96px;
  padding-bottom: 96px;
}

.process-principles-band .section-heading {
  max-width: 800px;
}

.process-principle-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.process-principle-grid {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-principle-grid article {
  min-height: 220px;
  border-left: 1px solid var(--line-dark);
  padding: 28px;
}

.process-principle-grid article:first-child {
  border-left: 0;
}

.process-principle-grid h3 {
  color: var(--white);
  font-size: 17px;
}

.process-principle-grid p {
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.6;
}

.outcome-grid {
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.outcome-grid article {
  min-height: 210px;
  background: var(--white);
  padding: 28px;
}

.outcome-grid h3 {
  color: var(--ink);
  font-size: 17px;
}

.outcome-grid p {
  margin-top: 42px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.fit-check-shell {
  scroll-margin-top: 84px;
}

.fit-expectation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px 0 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-expectation-grid article {
  min-height: 118px;
  border-left: 1px solid var(--line);
  padding: 22px;
}

.fit-expectation-grid article:first-child {
  border-left: 0;
}

.fit-expectation-grid strong,
.fit-expectation-grid span {
  display: block;
}

.fit-expectation-grid strong {
  color: var(--amber-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.fit-expectation-grid span {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fit-legal-note {
  margin-top: 38px;
}

.faq-opening {
  padding-bottom: 56px;
}

.faq-accordion {
  padding-top: 16px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  padding: 22px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 540;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > div {
  max-width: 820px;
  padding: 0 64px 30px 4px;
}

.faq-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .thesis-framework-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .relationship-steps li:nth-child(3) {
    border-left: 0;
  }

  .relationship-steps li:nth-child(n + 3) {
    border-top: 1px solid #cfc8c1;
  }

  .editorial-opening-grid,
  .maturity-grid,
  .preparation-grid,
  .founder-value-grid {
    grid-template-columns: 1fr;
  }

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

  .message-dimension-grid article:nth-child(4) {
    border-left: 0;
  }

  .message-dimension-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .process-principle-grid,
  .outcome-grid,
  .fit-expectation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-principle-grid article:nth-child(3),
  .fit-expectation-grid article:nth-child(3) {
    border-left: 0;
  }

  .process-principle-grid article:nth-child(n + 3),
  .fit-expectation-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .fit-expectation-grid article:nth-child(n + 3) {
    border-top-color: var(--line);
  }
}

@media (max-width: 680px) {
  .editorial-opening,
  .editorial-dimensions,
  .structure-paths,
  .founder-situations,
  .founder-value-grid,
  .journey-detail-list,
  .process-outcomes,
  .faq-accordion {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .editorial-opening-grid {
    gap: 28px;
  }

  .editorial-opening-grid h2 {
    font-size: 34px;
  }

  .editorial-opening-grid p {
    font-size: 16px;
  }

  .thesis-framework-grid,
  .message-dimension-grid,
  .structure-path-grid,
  .situation-grid,
  .founder-value-list,
  .process-principle-grid,
  .outcome-grid,
  .fit-expectation-grid {
    grid-template-columns: 1fr;
  }

  .thesis-framework-grid article,
  .message-dimension-grid article,
  .process-principle-grid article,
  .fit-expectation-grid article {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .thesis-framework-grid article:first-child,
  .message-dimension-grid article:first-child,
  .process-principle-grid article:first-child,
  .fit-expectation-grid article:first-child {
    border-top: 0;
  }

  .process-principle-grid article {
    border-top-color: var(--line-dark);
  }

  .message-dimension-grid h3 {
    margin-top: 34px;
  }

  .maturity-grid,
  .preparation-grid,
  .process-principles-band .surface {
    gap: 36px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .founder-value-grid {
    gap: 42px;
  }

  .journey-detail-list > article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }

  .journey-detail-list article > div {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .public-closing-cta {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .public-closing-actions {
    justify-content: flex-start;
  }

  .faq-item summary {
    min-height: 82px;
    font-size: 17px;
  }

  .faq-item > div {
    padding-right: 44px;
  }
}

@keyframes networkTrace {
  0% {
    stroke-dashoffset: 46;
    opacity: 0.08;
  }

  28%,
  72% {
    opacity: 0.78;
  }

  100% {
    stroke-dashoffset: -46;
    opacity: 0.08;
  }
}

@keyframes nodeBreathe {
  0%,
  100% {
    opacity: 0.58;
  }

  48%,
  58% {
    opacity: 0.9;
  }
}

@keyframes hudArcDrift {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -5px, 0) scale(1.012);
  }
}

@keyframes iconBreathe {
  0%,
  100% {
    opacity: 0.68;
  }

  46%,
  58% {
    opacity: 0.92;
  }
}

@keyframes iconHalo {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  44% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .home-thesis-intro,
  .capability-band,
  .audience-primary,
  .relationship-heading,
  .institutional-discipline,
  .ventures-final-cta {
    grid-template-columns: 1fr;
  }

  .home-thesis-intro {
    align-items: start;
  }

  .home-thesis-context {
    max-width: 680px;
  }

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

  .thesis-framework-grid article:nth-child(3) {
    border-left: 0;
  }

  .thesis-framework-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .capability-band {
    min-height: auto;
  }

  .capability-media {
    min-height: 430px;
    max-height: 620px;
  }

  .audience-primary > img {
    max-height: 430px;
  }

  .institutional-media {
    order: -1;
  }

  .ventures-final-cta {
    align-items: start;
  }

  .ventures-final-cta > div:last-child {
    justify-content: flex-start;
  }

  .system-command-header,
  .console-layout,
  .console-detail-grid,
  .intelligence-layout,
  .system-hero-panel,
  .system-operating-grid {
    grid-template-columns: 1fr;
  }

  .system-command-header {
    position: static;
  }

  .system-brand-lockup,
  .system-command-meta {
    justify-self: start;
  }

  .system-mode-tabs {
    justify-self: stretch;
    overflow-x: auto;
  }

  .internal-context-bar {
    position: static;
  }

  .console-pipeline-grid,
  .deal-operating-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .console-detail-side {
    position: static;
    border-top: 1px solid var(--internal-line);
    border-left: 0;
    padding: 20px 0 0;
  }

  .ic-summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ic-summary-strip article {
    border-top: 1px solid var(--internal-line);
  }

  .ic-summary-strip article:nth-child(-n + 2) {
    border-top: 0;
  }

  .ic-summary-strip article:nth-child(odd):not(.ic-decision-request) {
    border-left: 0;
  }

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

  .ic-brief-card.structure {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .ic-dossier-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ic-dossier-head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .ic-audit-status {
    width: min(100%, 560px);
  }

  .ic-decision-rail {
    position: static;
    border-top: 1px solid var(--internal-line);
    border-left: 0;
    padding: 20px 0 0;
  }

  .hero-inner,
  .section-grid.two,
  .editorial-band,
  .editorial-band.reverse,
  .apply-layout,
  .portal-grid,
  .scoring-grid,
  .committee-grid {
    grid-template-columns: 1fr;
  }

  .editorial-band.reverse .editorial-media,
  .editorial-band.reverse .editorial-copy {
    order: initial;
  }

  .home-block-grid,
  .info-card-grid,
  .faq-list,
  .fit-question {
    grid-template-columns: 1fr;
  }

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

  .hero-inner {
    align-items: end;
    padding-top: 126px;
  }

  .hero-connection-map {
    opacity: 0.58;
  }

  .hero-orbit-icon {
    opacity: 0.36;
  }

  .hero-orbit-icon--globe {
    width: 128px;
  }

  .icon-structure,
  .icon-growth {
    display: none;
  }

  .metrics-row,
  .gate-strip,
  .internal-metrics,
  .data-domain-grid,
  .system-metric-strip,
  .system-surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trace-stack,
  .memo-conclusion-head {
    grid-template-columns: 1fr;
  }

  .status-board {
    grid-template-columns: repeat(5, minmax(142px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 78px;
    padding-inline: 18px;
  }

  .brand-link img {
    width: 152px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 1.04;
  }

  .surface {
    width: min(100% - 28px, 1180px);
  }

  .system-command-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .system-brand-lockup img {
    width: 146px;
  }

  .system-mode-tabs button {
    padding-inline: 10px;
    white-space: nowrap;
  }

  .system-hero-copy,
  .system-hero-status,
  .system-flow-panel,
  .system-governance-panel,
  .system-surface-card {
    padding: 18px;
  }

  .system-hero-copy h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1;
  }

  .system-metric-strip,
  .system-surface-grid {
    grid-template-columns: 1fr;
  }

  .ic-summary-strip,
  .ic-brief-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ic-audit-status {
    grid-template-columns: minmax(0, 1fr);
  }

  .ic-audit-status span,
  .ic-audit-status span:first-child {
    border-top: 1px solid var(--internal-line);
    border-left: 0;
  }

  .ic-audit-status span:first-child {
    border-top: 0;
  }

  .ic-summary-strip article,
  .ic-summary-strip article:nth-child(-n + 2) {
    border-top: 1px solid var(--internal-line);
    border-left: 0;
  }

  .ic-summary-strip .ic-decision-request {
    border-top: 0;
    border-left: 3px solid var(--amber);
  }

  .ic-brief-card.structure {
    grid-column: auto;
  }

  .internal-metrics,
  .console-pipeline-grid,
  .deal-operating-grid,
  .data-domain-grid {
    grid-template-columns: 1fr;
  }

  .internal-surface {
    width: min(100% - 28px, 1500px);
    padding-top: 26px;
  }

  .internal-page-head,
  .internal-context-bar,
  .internal-page-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .internal-page-actions .primary-action,
  .internal-page-actions .secondary-action {
    flex: 0 0 auto;
    min-height: 48px;
  }

  .internal-context-meta {
    flex-wrap: wrap;
  }

  .internal-page-head h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1;
  }

  .pipeline-panel,
  .deal-workspace,
  .intelligence-record {
    padding: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero--editorial {
    min-height: auto;
  }

  .hero-inner {
    width: 100%;
    min-height: calc(100vh - 44px);
    gap: 24px;
    padding: 108px 18px 24px;
  }

  .hero--editorial .hero-inner {
    min-height: 72vh;
    padding-bottom: 34px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-icon-layer {
    opacity: 0.72;
  }

  .hero-connection-map {
    display: none;
  }

  .hero-orbit-icon {
    width: 64px;
    opacity: 0.48;
  }

  .hero-orbit-icon--globe {
    width: 96px;
  }

  .icon-globe {
    top: 13.5%;
    left: 54%;
  }

  .icon-org {
    top: 20%;
    right: 7%;
  }

  .icon-insight,
  .icon-structure,
  .icon-mesh,
  .icon-people,
  .icon-growth {
    display: none;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .primary-action,
  .secondary-action {
    flex: 1 1 148px;
    padding: 0 12px;
    font-size: 13px;
  }

  .surface {
    padding-block: 50px;
  }

  .home-thesis-intro,
  .thesis-framework,
  .audience-section,
  .institutional-discipline {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .thesis-framework-grid,
  .audience-grid,
  .capability-list,
  .relationship-steps {
    grid-template-columns: 1fr;
  }

  .thesis-framework-grid article,
  .thesis-framework-grid article:nth-child(3) {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 26px 8px 30px;
  }

  .thesis-framework-grid article:first-child {
    border-top: 0;
  }

  .thesis-framework-grid h3 {
    margin-top: 28px;
  }

  .capability-media {
    min-height: 300px;
  }

  .capability-copy {
    padding: 56px 20px;
  }

  .capability-list > div {
    min-height: auto;
  }

  .audience-primary {
    min-height: auto;
  }

  .audience-primary > img {
    max-height: 320px;
  }

  .audience-primary > div,
  .audience-secondary {
    padding: 30px 22px;
  }

  .audience-secondary {
    min-height: auto;
  }

  .relationship-band .surface {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .relationship-steps li {
    min-height: auto;
    border-top: 1px solid #cfc8c1;
    border-left: 0;
    padding: 26px 8px 30px;
  }

  .relationship-steps li:first-child {
    border-top: 0;
  }

  .relationship-steps h3 {
    margin-top: 30px;
  }

  .ventures-final-cta {
    gap: 34px;
    padding: 64px 18px;
  }

  .ventures-final-cta > div:last-child {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-meta {
    flex-wrap: wrap;
  }

  .editorial-band {
    margin: 54px 0;
  }

  .signal-rail {
    grid-template-columns: 1fr;
    margin: 42px 0 54px;
  }

  .signal-rail article {
    min-height: 112px;
  }

  .signal-rail span {
    margin-top: 22px;
  }

  .apply-form,
  .upload-grid,
  .metrics-row,
  .gate-strip,
  .trace-stack {
    grid-template-columns: 1fr;
  }

  .application-progress {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .application-progress .step-pill {
    flex: 0 0 auto;
  }

  .application-intake .choice-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .application-intake .choice-option {
    width: 100%;
    min-height: 48px;
    text-align: left;
  }

  .file-field,
  .consent-field,
  .wide-field {
    grid-column: span 1;
  }

  .fit-result,
  .application-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .application-confirmation-actions {
    display: grid;
    width: 100%;
  }

  .apply-form-shell,
  .portal-main,
  .score-main,
  .memo-preview,
  .table-shell {
    padding: 22px;
  }

  .startup-header,
  .site-footer,
  .table-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .score-total {
    text-align: left;
  }

  .score-total .trace-meta {
    justify-content: flex-start;
  }

  .score-total strong,
  .committee-grid .score-total strong {
    font-size: 42px;
  }

  .memo-conclusion,
  .evidence-group {
    padding: 16px;
  }

  .journey-line {
    grid-template-columns: repeat(8, minmax(132px, 1fr));
  }
}

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

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-lead {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    overflow-wrap: break-word;
    font-size: 40px;
    line-height: 1.04;
  }

  .hero--route-home .hero-copy h1 {
    font-size: 42px;
  }

  .hero .eyebrow {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    font-size: 10px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: 100%;
    min-height: 48px;
  }
}
