:root {
  color-scheme: dark;
  --bg: #101820;
  --surface: #18232d;
  --line: #33424e;
  --text: #f4f7fa;
  --muted: #b1bec9;
  --blue: #a8d4f7;
  --soft: #7f98ac;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
  border-radius: 4px;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
img {
  max-width: 100%;
  display: block;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--blue);
  color: var(--bg);
  padding: 14px 20px;
  z-index: 3;
}
.skip-link:focus {
  top: 16px;
}
.page-shell {
  width: min(1096px, calc(100% - 96px));
  margin: auto;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
}
.monogram {
  font-size: 30px;
  letter-spacing: -0.055em;
  font-weight: 800;
  line-height: 1;
  padding: 12px 3px;
}
.monogram span {
  color: var(--blue);
}
.site-header p {
  font-size: 14px;
  color: var(--muted);
}
.header-contact {
  margin-left: auto;
  font-size: 14px;
  padding: 12px 0;
}
.header-contact span {
  margin-left: 10px;
  color: var(--blue);
}
.header-contact:hover,
.personal-socials a:hover,
.closing-note a:hover {
  color: var(--blue);
}
.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 100px;
  padding: 64px 0 70px;
}
.portrait-wrap {
  position: relative;
  width: 228px;
  margin-bottom: 34px;
}
.portrait {
  width: 228px;
  height: 232px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 4px 4px 48px 4px;
  filter: saturate(0.8);
}
.eyebrow {
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 13px;
}
.profile h1 {
  font-size: clamp(2.7rem, 4.3vw, 3.55rem);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: -0.055em;
}
.accent {
  color: var(--blue);
}
.intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 24px;
  max-width: 330px;
}
.founder-line {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 14px;
}
.contact {
  margin-top: 30px;
}
.save-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: #102738;
  font-size: 15px;
  font-weight: 650;
  transition:
    background 0.18s,
    transform 0.18s;
  margin-bottom: 18px;
}
.save-contact:hover {
  background: #c5e5ff;
  transform: translateY(-2px);
}
.contact-line {
  display: grid;
  grid-template-columns: 43px 1fr 14px;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-line > span:first-child {
  color: var(--muted);
}
.contact-line strong {
  font-weight: 500;
  overflow-wrap: anywhere;
}
.contact-line > span:last-child {
  color: var(--blue);
}
.contact-line:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.personal-socials {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  font-size: 14px;
}
.personal-socials a {
  padding: 10px 0;
}
.personal-socials span[aria-hidden] {
  color: var(--soft);
  margin-left: 6px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-heading h2 {
  font-size: 16px;
  font-weight: 500;
}
.section-heading > span {
  font:
    12px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  color: var(--muted);
}
.venture {
  --brand: var(--blue);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 16px;
  transition:
    border-color 0.18s,
    background 0.18s;
  overflow: hidden;
}
.venture:hover {
  border-color: #72889b;
  background: #1c2833;
}
.venture-link {
  display: block;
  padding: 25px 28px 23px;
}
.venture-link:focus-visible {
  outline-offset: -4px;
}
.venture-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}
.truetill .brand-icon {
  background: transparent;
  border-radius: 0;
}
.venture-category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.venture-number {
  margin-left: auto;
  align-self: flex-start;
  font:
    12px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  color: var(--soft);
  padding-top: 4px;
}
.venture h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.venture p {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.venture-destination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
}
.domain {
  margin-left: auto;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.destination-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.18s;
}
.venture-link:hover .destination-arrow {
  transform: translate(2px, -2px);
}
.plentyful {
  --brand: #c4b5fd;
}
.launchful {
  --brand: #9ce1c6;
}
.brand-socials {
  border-top: 1px solid var(--line);
  margin: 0 28px;
}
.brand-socials summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}
.brand-socials summary::-webkit-details-marker {
  display: none;
}
.social-count {
  color: var(--muted);
  font-size: 12px;
}
.expand-icon {
  margin-left: auto;
  color: var(--brand);
  font-size: 23px;
  font-weight: 300;
}
.brand-socials[open] .expand-icon {
  transform: rotate(45deg);
}
.brand-socials nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 17px;
  padding: 0 0 16px;
}
.brand-socials nav a {
  font-size: 14px;
  min-height: 44px;
  min-width: 24px;
  display: flex;
  align-items: center;
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: #8272ae;
  text-underline-offset: 4px;
}
.brand-socials nav a:hover {
  color: white;
}
.closing-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 26px;
}
.closing-note a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0 30px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer > a {
  padding: 12px 0;
  color: var(--text);
}
@media (min-width: 1100px) {
  .profile {
    align-self: start;
    position: sticky;
    top: 32px;
  }
}
@media (max-width: 1000px) {
  .page-shell {
    width: calc(100% - 64px);
  }
  .main-grid {
    grid-template-columns: minmax(0, 290px) minmax(0, 1fr);
    gap: 48px;
  }
  .venture-link {
    padding: 24px;
  }
  .brand-socials {
    margin: 0 24px;
  }
  .domain {
    display: none;
  }
  .intro {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .page-shell {
    width: min(560px, calc(100% - 40px));
  }
  .site-header {
    min-height: 86px;
    gap: 18px;
  }
  .site-header p {
    font-size: 12px;
    max-width: 130px;
    line-height: 1.5;
  }
  .header-contact {
    font-size: 13px;
  }
  .main-grid {
    display: block;
    padding: 34px 0 40px;
  }
  .profile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 88px;
    column-gap: 20px;
  }
  .portrait-wrap {
    grid-column: 2;
    grid-row: 1;
    width: 88px;
    margin: 0;
    align-self: start;
    padding-top: 28px;
  }
  .portrait {
    width: 88px;
    height: 106px;
    border-radius: 4px 4px 24px 4px;
  }
  .profile-copy {
    grid-row: 1;
    grid-column: 1;
  }
  .profile h1 {
    font-size: clamp(2.3rem, 7.8vw, 3.3rem);
  }
  .eyebrow {
    margin-bottom: 12px;
  }
  .intro {
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    margin-top: 20px;
  }
  .founder-line {
    font-size: 13px;
    line-height: 1.6;
  }
  .contact {
    grid-column: 1/-1;
    margin-top: 26px;
  }
  .save-contact {
    min-height: 54px;
  }
  .personal-socials {
    margin-top: 13px;
  }
  .businesses {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
  }
  .section-heading {
    margin-bottom: 18px;
  }
  .venture-link {
    padding: 23px;
  }
  .venture-heading {
    margin-bottom: 17px;
  }
  .venture h3 {
    font-size: 28px;
  }
  .venture p {
    font-size: 16px;
  }
  .venture-category {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .venture-destination {
    margin-top: 20px;
  }
  .brand-socials {
    margin: 0 23px;
  }
  .domain {
    display: inline;
    font-size: 12px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 12px;
    line-height: 1.6;
    padding: 20px 0;
  }
  .site-footer > a {
    margin-left: auto;
  }
  .closing-note {
    margin-top: 22px;
  }
}
@media (max-width: 380px) {
  .page-shell {
    width: calc(100% - 32px);
  }
  .site-header {
    gap: 12px;
  }
  .site-header p {
    max-width: 100px;
  }
  .header-contact span {
    margin-left: 4px;
  }
  .profile {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 12px;
  }
  .portrait-wrap {
    width: 70px;
  }
  .portrait {
    width: 70px;
    height: 90px;
  }
  .profile h1 {
    font-size: 2.25rem;
  }
  .domain {
    display: none;
  }
  .venture-link {
    padding: 20px;
  }
  .brand-socials {
    margin: 0 20px;
  }
  .venture-category {
    font-size: 12px;
    letter-spacing: 0;
  }
  .brand-icon {
    width: 36px;
    height: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
