:root {
  --ink: #172024;
  --muted: #667074;
  --line: #d9e0df;
  --paper: #f7f8f5;
  --white: #ffffff;
  --green: #0f6b55;
  --green-2: #42a680;
  --blue: #215a8e;
  --red: #ba4b4b;
  --amber: #d29d3d;
  --shadow: 0 18px 50px rgba(27, 40, 46, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 48px;
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(23, 32, 36, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.nav-action,
.primary-btn,
.secondary-btn,
.asset-actions button,
.join-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.nav-action,
.primary-btn,
.asset-actions button,
.join-form button {
  color: var(--white);
  background: var(--green);
}

.secondary-btn {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23, 32, 36, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.92fr);
  align-items: end;
  min-height: calc(100vh - 72px);
  padding: 64px 48px 52px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.1), rgba(247, 248, 245, 0.94) 58%),
    url("https://images.unsplash.com/photo-1581093458791-9d42cc6b0a33?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 48px 0;
  height: 1px;
  background: rgba(23, 32, 36, 0.12);
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.pipeline-map {
  position: relative;
  width: min(560px, 100%);
  height: 520px;
}

.pipeline-map::before {
  content: "";
  position: absolute;
  inset: 60px 54px 76px 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  transform: rotate(-7deg);
}

.pipeline-map::after {
  content: "";
  position: absolute;
  left: 84px;
  right: 48px;
  top: 258px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), var(--green-2), rgba(255, 255, 255, 0.2));
}

.node,
.deal-card {
  position: absolute;
  color: var(--white);
  background: rgba(8, 35, 39, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.node {
  display: grid;
  place-items: center;
  width: 116px;
  height: 56px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
}

.node-biotech {
  left: 22px;
  top: 90px;
}

.node-vc {
  right: 82px;
  top: 80px;
}

.node-park {
  left: 88px;
  bottom: 96px;
}

.node-pharma {
  right: 34px;
  bottom: 122px;
}

.signal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(210, 157, 61, 0.18);
}

.signal-a {
  left: 245px;
  top: 252px;
}

.signal-b {
  left: 352px;
  top: 252px;
  background: var(--green-2);
  box-shadow: 0 0 0 12px rgba(66, 166, 128, 0.2);
}

.deal-card {
  left: 148px;
  top: 185px;
  width: 260px;
  padding: 18px;
  border-radius: 8px;
}

.deal-card span,
.deal-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.deal-card strong {
  display: block;
  margin: 8px 0;
  font-size: 17px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-bottom: 40px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  color: #344044;
  font-size: 20px;
  line-height: 1.75;
}

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

.role-band,
.market-section,
.dealroom-section,
.workflow-section,
.pricing-section,
.join-section {
  padding: 76px 48px;
}

.role-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 36px;
  background: var(--ink);
}

.role {
  min-height: 180px;
  padding: 30px;
  color: var(--white);
  background: #203035;
}

.role span {
  color: #9dcdbb;
  font-size: 13px;
  font-weight: 800;
}

.role strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 24px;
}

.role p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

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

.section-heading h2,
.dealroom-panel h2,
.join-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.section-heading p,
.dealroom-panel p,
.join-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.workspace {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.filters,
.asset-card,
.dealroom-panel,
.beta-item,
.join-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(27, 40, 46, 0.06);
}

.filters {
  height: fit-content;
  padding: 22px;
}

.filter-block {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.filter-block label,
.form-row label,
.match-score span {
  display: block;
  margin-bottom: 10px;
  color: #425056;
  font-size: 13px;
  font-weight: 800;
}

select,
input[type="text"],
input[type="email"] {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  background: #f0f3f0;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}

.chip.active {
  color: var(--white);
  background: var(--blue);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  color: #485459;
}

.match-score strong {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

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

.asset-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 24px;
}

.asset-card.featured {
  border-top: 5px solid var(--green);
}

.asset-topline,
.asset-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status,
.score {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status {
  color: var(--green);
  background: rgba(15, 107, 85, 0.1);
}

.status.muted {
  color: var(--blue);
  background: rgba(33, 90, 142, 0.1);
}

.score {
  color: #704d0f;
  background: rgba(210, 157, 61, 0.16);
}

.asset-card h3 {
  margin: 26px 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.asset-card p {
  color: var(--muted);
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.tags span {
  padding: 7px 9px;
  color: #3f4b50;
  background: #f1f4f2;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.asset-actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.asset-actions a {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.dealroom-section {
  background: #e9efec;
}

.dealroom-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  padding: 34px;
}

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

.room-item {
  min-height: 164px;
  padding: 20px;
  background: #f7f9f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.room-item.unlocked {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.room-item span {
  display: block;
  margin-bottom: 30px;
  font-weight: 800;
  opacity: 0.72;
}

.room-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.room-item p {
  margin: 0;
  color: inherit;
  opacity: 0.74;
}

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

.step {
  min-height: 280px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

.step h3 {
  margin: 42px 0 12px;
  font-size: 24px;
}

.step p {
  color: var(--muted);
  line-height: 1.72;
}

.pricing-section {
  background: #fbfcfa;
}

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

.beta-item {
  min-height: 220px;
  padding: 26px;
}

.beta-item strong {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.beta-item span {
  display: block;
  margin: 18px 0 14px;
  font-size: 44px;
  font-weight: 800;
}

.beta-item p {
  color: var(--muted);
  line-height: 1.7;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 40px;
  align-items: start;
  background: var(--ink);
}

.join-copy h2,
.join-copy p {
  color: var(--white);
}

.join-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.join-form {
  padding: 26px;
}

.form-row {
  margin-bottom: 18px;
}

.join-form button {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-media {
    min-height: 400px;
  }

  .pipeline-map {
    height: 380px;
  }

  .deal-card {
    left: 118px;
    top: 142px;
  }

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

  .dealroom-panel,
  .join-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero,
  .role-band,
  .market-section,
  .dealroom-section,
  .workflow-section,
  .pricing-section,
  .join-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(247, 248, 245, 0.1), rgba(247, 248, 245, 0.96) 44%),
      url("https://images.unsplash.com/photo-1581093458791-9d42cc6b0a33?auto=format&fit=crop&w=1200&q=80") center / cover;
  }

  .hero-media {
    min-height: 310px;
  }

  .pipeline-map {
    height: 300px;
  }

  .node {
    width: 96px;
    height: 46px;
    font-size: 12px;
  }

  .node-vc {
    right: 12px;
  }

  .node-pharma {
    right: 10px;
  }

  .deal-card {
    left: 52px;
    top: 126px;
    width: 230px;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .role-band,
  .workspace,
  .asset-list,
  .dealroom-grid,
  .timeline,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .asset-card {
    min-height: 0;
  }

  .step {
    min-height: 220px;
  }
}
