:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --ink-2: #242424;
  --muted: #686868;
  --subtle: #8a8a8a;
  --line: #dedbd4;
  --rule: #dedbd4;
  --paper: #fbfaf7;
  --paper-2: #f1eee6;
  --white: #ffffff;
  --accent: #ff7a1a;
  --blue: #0a0a0a;
  --blue-soft: #f1eee6;
  --green: #16885a;
  --green-soft: #e8f6f0;
  --amber: #b7791f;
  --amber-soft: #fff3d9;
  --red: #c24141;
  --red-soft: #fdecec;
  --shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
  --display: "Times New Roman", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
}

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

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

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-cta,
.btn,
.hp-chip,
.num {
  font-family: var(--sans);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.brand:hover {
  color: var(--ink);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 700;
  border: 1px solid var(--ink);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
}

.italic {
  font-style: italic;
}

.wrap {
  width: min(1280px, calc(100vw - 40px));
  margin: 0 auto;
}

.section {
  border-top: 1px solid var(--rule);
  padding: clamp(64px, 8vw, 120px) 0;
}

.hero-section {
  padding: clamp(34px, 4.5vw, 68px) 0 clamp(46px, 6vw, 80px);
  background: var(--paper);
}

.hero-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: clamp(26px, 3.8vw, 44px);
  border-bottom: 1px solid var(--rule);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-h1 {
  margin: 0 0 clamp(28px, 4vw, 48px);
  font-size: clamp(54px, 7.8vw, 124px);
  line-height: 0.94;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  padding-bottom: clamp(28px, 4vw, 52px);
}

.kicker {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.45;
}

.hero-cta,
.hero-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-accent,
.nav-cta {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
}

.hero-practices {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.hp-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--paper);
}

.hp-chip span,
.num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.manifesto {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
  border-top-color: var(--accent);
}

.shape-register {
  position: absolute;
  top: clamp(32px, 4vw, 64px);
  right: clamp(24px, 4vw, 64px);
  width: 120px;
  height: 120px;
  opacity: 0.38;
}

.manifesto .eyebrow {
  color: var(--ink);
  display: block;
  margin-bottom: 32px;
}

.manifesto-h {
  max-width: 980px;
  margin: 0 0 clamp(32px, 5vw, 56px);
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.98;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1080px;
}

.manifesto-grid p {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2,
.console-head h2 {
  max-width: 920px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

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

.liquidity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 14px;
  align-items: stretch;
}

.liquidity-lead,
.capital-stack article {
  border: 1px solid var(--rule);
  background: var(--white);
}

.liquidity-lead {
  min-height: 380px;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  align-content: space-between;
}

.liquidity-lead h3 {
  margin: clamp(52px, 7vw, 96px) 0 22px;
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 0.98;
}

.liquidity-lead p,
.capital-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.capital-stack article {
  min-height: 120px;
  border-radius: 16px;
  padding: 22px;
  display: grid;
  grid-template-columns: 42px minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.capital-stack span {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 11px;
}

.capital-stack strong {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.liquidity-flow {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}

.liquidity-flow span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ink);
  padding: 8px 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.liquidity-flow span:last-child {
  border-right: 0;
  color: var(--ink);
  background: var(--accent);
}

.workflow-cards article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.workflow-cards article:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  background: var(--accent);
}

.workflow-cards span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.workflow-cards h3 {
  margin: 44px 0 14px;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.workflow-cards p {
  color: var(--muted);
  line-height: 1.5;
}

.workflow-cards article:hover p,
.workflow-cards article:hover span {
  color: var(--ink);
}

.console-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.console-head p {
  max-width: 660px;
  color: var(--muted);
}

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

h1 {
  margin-bottom: 5px;
  font-size: 28px;
  line-height: 1.12;
}

h2 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2;
}

.lede {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.header-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.primary,
.secondary,
.ghost {
  min-height: 42px;
  border-radius: 7px;
  padding: 0 15px;
  font-weight: 800;
}

.primary {
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.ghost {
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
}

.workspace {
  width: min(1440px, calc(100vw - 32px));
  margin: 0 auto 72px;
  padding-top: 40px;
}

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  overflow-x: auto;
}

.tab {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 13px;
  color: var(--muted);
  background: var(--white);
  font-weight: 800;
}

.tab.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.metric-grid,
.risk-grid,
.operator-grid,
.decision-grid {
  display: grid;
  gap: 14px;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.metric-card,
.panel,
.risk-card,
.stage-rail article,
.decision-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric-card {
  min-height: 118px;
  padding: 17px;
  box-shadow: var(--shadow);
}

.metric-card span,
.metric-card small,
.summary-list span,
.record-list span,
.timeline small,
.stage-rail small,
.risk-card span,
.inline-status {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-card strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 26px;
  line-height: 1.05;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 14px;
  margin-bottom: 14px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 14px;
}

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

.panel,
.decision-grid div {
  padding: 20px;
}

.panel {
  box-shadow: var(--shadow);
}

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

.panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--ink);
  background: #fbfcfe;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.pill.success,
.success {
  border-color: rgba(22, 136, 90, 0.3);
  color: var(--green);
  background: var(--green-soft);
}

.pill.warning,
.warning {
  border-color: rgba(183, 121, 31, 0.3);
  color: var(--amber);
  background: var(--amber-soft);
}

.danger {
  border-color: rgba(194, 65, 65, 0.3);
  color: var(--red);
  background: var(--red-soft);
}

.policy {
  color: var(--blue);
  background: var(--blue-soft);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

td {
  color: var(--ink);
  font-size: 14px;
}

td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

tr[data-asset-id] {
  cursor: pointer;
}

tr[data-asset-id]:hover,
tr.is-selected {
  background: #f8fbff;
}

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

.summary-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.summary-list strong {
  overflow-wrap: anywhere;
}

.stage-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.stage-rail article {
  min-height: 104px;
  padding: 13px;
}

.stage-rail article.done {
  border-color: rgba(22, 136, 90, 0.35);
  background: var(--green-soft);
}

.stage-rail strong,
.risk-card strong {
  display: block;
  margin: 8px 0 4px;
}

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

.risk-card {
  min-height: 88px;
  padding: 14px;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 13px;
  border-left: 3px solid var(--blue);
  padding: 2px 0 4px 12px;
}

.timeline article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
}

textarea {
  resize: vertical;
}

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

.guidance ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.record-list {
  display: grid;
  gap: 11px;
}

.record-list article {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  background: #fbfcfe;
}

code {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.definition-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.chain-readiness {
  margin-top: 18px;
}

.definition-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
}

dt {
  color: var(--ink);
  font-weight: 850;
}

dd {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-list span {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  background: #fbfcfe;
  color: var(--ink);
  font-weight: 800;
}

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

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

.address-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfe;
}

.address-grid h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.address-grid div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 10px 0;
}

.address-grid span {
  color: var(--muted);
  font-size: 13px;
}

.address-grid strong {
  overflow-wrap: anywhere;
}

.decision-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.empty-state {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.auth-chip {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.auth-chip a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.pitch-page {
  background: var(--paper);
}

.pitch-deck-html {
  width: min(1440px, calc(100vw - 32px));
  margin: 0 auto 72px;
}

.pitch-slide {
  display: grid;
  align-content: center;
  min-height: min(760px, calc(100vh - 80px));
  gap: 24px;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--rule);
}

.pitch-title {
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
}

.pitch-title h1,
.pitch-slide h2 {
  max-width: 1020px;
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(44px, 6.4vw, 104px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.pitch-slide h2 {
  font-size: clamp(40px, 5.2vw, 86px);
}

.pitch-slide h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(25px, 2.3vw, 38px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.pitch-slide p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.45;
}

.pitch-lede {
  margin-top: -8px;
  margin-bottom: 8px;
}

.pitch-orange-card {
  display: grid;
  align-content: center;
  min-height: 420px;
  gap: 26px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 16px;
  background: var(--accent);
}

.pitch-orange-card span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pitch-orange-card strong {
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 62px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.pitch-orange-card hr {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 2px solid var(--ink);
}

.pitch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pitch-card-grid,
.pitch-two-paths {
  display: grid;
  gap: 14px;
}

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

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

.pitch-card-grid article,
.pitch-two-paths article {
  min-height: 232px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
}

.pitch-card-grid article span {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.pitch-two-paths article strong {
  display: block;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.4;
}

.pitch-two-paths article.dark,
.pitch-dark {
  color: var(--white);
  background: var(--ink);
}

.pitch-two-paths article.dark p,
.pitch-dark p,
.pitch-dark .num {
  color: #d7d7d7;
}

.pitch-two-paths article.orange,
.pitch-orange {
  color: var(--ink);
  background: var(--accent);
}

.pitch-dark {
  border-top-color: var(--ink);
}

.pitch-dark h2,
.pitch-dark h3 {
  color: var(--white);
}

.pitch-dark .pitch-card-grid article,
.pitch-dark .pitch-two-paths article {
  border-color: #484848;
  background: #1c1c1c;
}

.pitch-dark .pitch-card-grid article:first-child,
.pitch-dark .pitch-two-paths article.orange {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.pitch-dark .pitch-card-grid article:first-child p,
.pitch-dark .pitch-two-paths article.orange p {
  color: var(--ink);
}

.pitch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pitch-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.pitch-tags.wide {
  max-width: 980px;
}

.pitch-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.pitch-flow span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 8px;
  border-right: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.pitch-flow span:last-child {
  border-right: 0;
  background: var(--accent);
}

.pitch-flow.vertical {
  grid-template-columns: 1fr;
  max-width: 780px;
  border-radius: 16px;
}

.pitch-flow.vertical span {
  border-right: 0;
  border-bottom: 1px solid var(--ink);
}

.pitch-flow.vertical span:last-child {
  border-bottom: 0;
}

.pitch-claim {
  color: var(--ink) !important;
  font-weight: 800;
}

.pitch-table {
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
}

.pitch-table div {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr 1.4fr;
}

.pitch-table div > * {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.35;
}

.pitch-table div:last-child > * {
  border-bottom: 0;
}

.pitch-table div:first-child {
  background: var(--paper-2);
  font-weight: 800;
}

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

.deep-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--ink);
}

.footer-wrap {
  padding: clamp(54px, 7vw, 92px) 0 28px;
}

.footer-lead {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(34px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

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

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--accent);
}

.footer-lead h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 78px);
  line-height: 0.98;
}

.footer-lead p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 5vw, 60px) 0;
}

.footer-grid div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-grid h3 {
  margin: 0 0 4px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .metric-grid,
  .risk-grid,
  .decision-grid,
  .workflow-cards,
  .liquidity-flow,
  .pitch-card-grid.three,
  .pitch-card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .topbar,
  .panel-title,
  .console-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .header-actions,
  .hero-cta {
    width: 100%;
  }

  .header-actions button,
  .header-actions a {
    flex: 1 1 160px;
  }

  .hero-grid,
  .liquidity-layout,
  .footer-lead,
  .manifesto-grid,
  .workflow-cards,
  .metric-grid,
  .split-layout,
  .form-layout,
  .operator-grid,
  .risk-grid,
  .address-grid,
  .decision-grid,
  .stage-rail,
  .form-grid,
  .pitch-title,
  .pitch-two-paths,
  .footer-grid,
  .pitch-card-grid.three,
  .pitch-card-grid.four,
  .pitch-table div {
    grid-template-columns: 1fr;
  }

  .summary-list div,
  .timeline article,
  .address-grid div,
  .definition-list div {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
    padding: 20px 16px;
  }

  .capital-stack article,
  .liquidity-flow,
  .pitch-flow {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .liquidity-flow span,
  .pitch-flow span {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .liquidity-flow span:last-child,
  .pitch-flow span:last-child {
    border-bottom: 0;
  }

  .hero-meta-r {
    display: none;
  }

  .workspace {
    width: min(100vw - 20px, 720px);
    margin-top: 0;
  }

  .pitch-deck-html {
    width: min(100vw - 20px, 720px);
  }

  .pitch-slide {
    min-height: auto;
    padding: 52px 12px;
  }

  .pitch-orange-card {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .hero-h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .workflow-cards article {
    min-height: 190px;
  }

  .pitch-title h1,
  .pitch-slide h2 {
    font-size: clamp(40px, 13vw, 68px);
  }

  .pitch-card-grid article,
  .pitch-two-paths article {
    min-height: 200px;
    padding: 20px;
  }

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