:root {
  --ink: #17161b;
  --muted: #696672;
  --paper: #f7f6f2;
  --card: #fff;
  --line: #e5e1ea;
  --violet: #6547d7;
  --violet-dark: #2b214d;
  --mint: #dff5e9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
}
.public-nav {
  height: 72px;
  padding: 0 max(5vw, 22px);
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.public-brand {
  font: 800 21px Manrope;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.public-brand i {
  width: 27px;
  height: 27px;
  border: 7px solid var(--ink);
  border-radius: 50%;
  display: block;
}
.public-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.public-links a,
.public-login {
  color: #4e4b54;
  text-decoration: none;
  font-weight: 600;
}
.public-cta,
.button-primary {
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.network-hero {
  padding: 82px max(5vw, 22px) 48px;
  max-width: 1300px;
  margin: auto;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--violet);
}
.network-hero h1,
.profile-head h1 {
  font: 800 clamp(38px, 6vw, 72px)/1.02 Manrope;
  margin: 14px 0;
}
.network-hero p {
  max-width: 670px;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
}
.directory-shell {
  max-width: 1300px;
  margin: auto;
  padding: 0 max(5vw, 22px) 100px;
}
.filters {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 10px;
  position: sticky;
  top: 88px;
  z-index: 10;
}
.filters input,
.filters select {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfafc;
  font: inherit;
}
.directory-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 18px;
}
.startup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.startup-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  box-shadow: 0 12px 35px rgba(28, 20, 50, 0.04);
}
.startup-card.featured {
  border-color: #bcaeef;
}
.disclosure {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--violet);
  margin-bottom: 14px;
}
.company-line {
  display: flex;
  gap: 13px;
  align-items: center;
}
.company-logo {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--violet-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  overflow: hidden;
}
.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-line h2 {
  font: 750 20px Manrope;
  margin: 0;
}
.company-line small,
.startup-card > p {
  color: var(--muted);
}
.startup-card > p {
  line-height: 1.55;
  flex: 1;
}
.chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.chips span {
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 99px;
  background: #f0edf8;
}
.round-line {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 17px 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.round-line small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.startup-card > a {
  font-weight: 800;
  color: var(--violet);
  text-decoration: none;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.pagination button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 10px 15px;
}
.empty {
  grid-column: 1/-1;
  padding: 50px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.profile-shell {
  max-width: 1120px;
  margin: 60px auto 100px;
  padding: 0 max(5vw, 22px);
}
.profile-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.profile-head h1 {
  font-size: clamp(42px, 6vw, 70px);
}
.profile-head .tagline {
  font-size: 21px;
  color: var(--muted);
  max-width: 720px;
}
.profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.button-secondary {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.profile-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  margin-bottom: 18px;
}
.profile-panel h2 {
  font: 750 22px Manrope;
  margin: 0 0 15px;
}
.profile-panel p {
  color: var(--muted);
  line-height: 1.65;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.facts small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.facts strong {
  display: block;
  margin-top: 5px;
}
.privacy-note {
  padding: 15px;
  background: #f1eef9;
  border-radius: 12px;
  color: #584d78;
  font-size: 13px;
}
.founder {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.founder:first-of-type {
  border-top: 0;
}
.founder a {
  color: var(--violet);
}
.loading {
  padding: 70px;
  text-align: center;
  color: var(--muted);
}
@media (max-width: 900px) {
  .startup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filters {
    grid-template-columns: 1fr 1fr;
    position: static;
  }
  .profile-head,
  .profile-layout {
    grid-template-columns: 1fr;
  }
  .public-links {
    display: none;
  }
}
@media (max-width: 620px) {
  .startup-grid {
    grid-template-columns: 1fr;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .public-login {
    margin-left: auto;
  }
  .network-hero {
    padding-top: 52px;
  }
  .facts {
    grid-template-columns: 1fr;
  }
}
