@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500&display=swap");

:root {
  font-synthesis: none;
  --accent: #002FA7;
  --bg: #fff;
  --text: #666;
  --text-strong: #000;
  --text-soft: #999;
  --line: #e8e8e8;
  --geist: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: var(--geist);
  --sans: var(--geist);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.45;
  text-transform: lowercase;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: .35rem .55rem;
  background: var(--text-strong);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  z-index: 10;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(100% - 4rem, 680px);
  min-height: 100vh;
  margin: 0 auto;
  padding: max(2.75rem, 7vh) 0 3.5rem;
}

.video-page .bio {
  max-width: 680px;
}

.rail {
  margin-bottom: 2.1rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}

.nav a {
  color: var(--text);
  transition: color 160ms ease, opacity 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  transform: translateY(-1px);
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
  filter: invert(1);
  opacity: .78;
}

main,
.bio {
  display: grid;
  gap: 1rem;
}

main {
  gap: 1.75rem;
}

section {
  display: grid;
  gap: 1rem;
}

.bio {
  color: var(--text);
}

.bio p {
  font-size: 18px;
  line-height: 1.45;
}

.highlight-link,
.bio a,
.description-link {
  color: var(--accent);
  transition: opacity 160ms ease;
}

.highlight-link:hover,
.bio a:hover,
.description-link:hover {
  opacity: .7;
}

.info-link {
  position: relative;
  color: var(--accent);
  cursor: help;
}

.info-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .05em;
  border-bottom: 1px solid currentColor;
  opacity: .35;
}

.info-card {
  position: absolute;
  left: 0;
  top: calc(100% + .45rem);
  z-index: 5;
  width: min(330px, calc(100vw - 3rem));
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.info-link:hover .info-card,
.info-link:focus .info-card,
.info-link:focus-within .info-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.info-card .description-link {
  display: inline-block;
  margin-top: .45rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-top: .55rem;
  color: #4d4d4d;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
}

.contact-links a:hover {
  color: var(--accent);
}

.section-note {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .02em;
}

.barcode-mark {
  display: flex;
  align-items: stretch;
  gap: 3px;
  width: 92px;
  height: 26px;
  margin-bottom: .9rem;
  color: var(--text-strong);
}

.barcode-mark span {
  display: block;
  width: 2px;
  background: currentColor;
}

.barcode-mark span:nth-child(1),
.barcode-mark span:nth-child(6),
.barcode-mark span:nth-child(10),
.barcode-mark span:nth-child(14) {
  width: 4px;
}

.barcode-mark span:nth-child(3),
.barcode-mark span:nth-child(8),
.barcode-mark span:nth-child(12) {
  width: 1px;
}

.barcode-mark span:nth-child(5),
.barcode-mark span:nth-child(11),
.barcode-mark span:nth-child(15) {
  height: 72%;
}

.founder-filter {
  display: grid;
  gap: .55rem;
  margin: -.15rem 0 .35rem;
  padding-left: .9rem;
  border-left: 2px solid color-mix(in srgb, var(--accent) 72%, var(--line));
}

.founder-filter p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.38;
}

.founder-filter span {
  display: inline-block;
  width: 2.15rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
}

.founder-filter strong {
  color: var(--text-strong);
  font-weight: 500;
  margin-right: .25rem;
}

.investments-list {
  display: grid;
  gap: .35rem;
  margin-top: .1rem;
}

.inv-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 1rem;
  color: var(--text);
  line-height: 1.25;
  transition: color 160ms ease, transform 160ms ease;
}

.inv-row:hover {
  color: var(--text-strong);
  transform: translateX(2px);
}

.inv-name {
  min-width: 0;
}

.inv-cat {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.inv-arrow {
  display: none;
}

.doc-grid,
.rapid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-inline: 0;
}

.card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 160ms ease, opacity 160ms ease;
}

.card:hover {
  border-color: #ccc;
}

.card img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  display: block;
  filter: saturate(.86);
  transition: filter 160ms ease;
}

.card:hover img {
  filter: saturate(1);
}

.card.onewheel img { object-position: 50% 56%; }
.card.matic img { object-position: 50% 64%; }
.card.lightphone img { object-position: 50% 45%; }
.card.insta360 img { object-position: 43% 58%; }
.card.hyperice img { object-position: 50% 62%; }
.card.form img { object-position: 50% 30%; }
.card.impulse img { object-position: 50% 36%; }
.card.bondu img { object-position: 50% 44%; }
.card.sunday img { object-position: 50% 44%; }
.card.andromeda img { object-position: 50% 44%; }

.overlay {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 64px;
  padding: .55rem .6rem .5rem;
  background: transparent;
}

.title {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
}

.eyebrow {
  margin-top: .18rem;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.2;
}

.hwn-mark,
.section-label,
.section-head,
.count,
.hero-link,
.hero-sub,
.nav-toggle,
.icon-row,
.chip {
  display: none;
}

@media (max-width: 980px) {
  .doc-grid,
  .rapid-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .shell {
    width: min(100% - 3rem, 600px);
    padding: 4rem 0 3rem;
  }

  body,
  .bio p {
    font-size: 17px;
    line-height: 1.35;
  }

  main,
  .bio {
    gap: .75rem;
  }

  .rail {
    margin-bottom: 1.3rem;
  }

  .info-card {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 1rem;
    width: auto;
    max-height: min(70vh, 22rem);
    overflow: auto;
    padding: .9rem 1rem;
    border-color: #dedede;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
    transform: translateY(.5rem);
  }

}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 2rem, 600px);
    padding-top: 3rem;
  }

  body,
  .bio p {
    font-size: 16px;
  }

  .nav {
    gap: .65rem;
    font-size: 15px;
  }

  .contact-links {
    font-size: 12px;
  }

  .video-page .shell {
    width: min(100% - 2rem, 600px);
  }

  .doc-grid,
  .rapid-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .card img {
    width: 88px;
    height: 58px;
  }

  .overlay {
    min-height: 58px;
    padding: .45rem .55rem;
  }
}
