:root {
  --paper: #f4f0e8;
  --ink: #181814;
  --muted: #6c6a62;
  --line: rgba(24, 24, 20, 0.15);
  --orange: #ff5a2f;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(24, 24, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 24, 20, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.16;
  pointer-events: none;
}

.ambient-one {
  top: -17rem;
  right: -12rem;
  background: #ff7250;
}

.ambient-two {
  bottom: -22rem;
  left: -16rem;
  background: #2259ff;
}

.shell {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 20px 0 36px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.65rem;
  letter-spacing: -0.03em;
}

.hero {
  padding: 48px 0 52px;
}

.portrait-wrap {
  position: relative;
  width: max-content;
  margin-bottom: 24px;
}

.portrait {
  display: block;
  width: 94px;
  height: 94px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(24, 24, 20, 0.14);
}

.status-dot {
  position: absolute;
  right: 4px;
  bottom: 5px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: #43a564;
}

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

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.2rem, 13vw, 6.7rem);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.6vw, 1.22rem);
  line-height: 1.55;
}

.ventures,
.next-up,
.social {
  margin-top: 26px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 0 2px;
}

.section-heading h2,
.section-heading span {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading span {
  color: var(--muted);
  font-size: 0.63rem;
}

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

.venture-card {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 138px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(24, 24, 20, 0.1);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.venture-card::after {
  position: absolute;
  z-index: -1;
  right: -40px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(255, 255, 255, 0.045),
    0 0 0 44px rgba(255, 255, 255, 0.025);
  content: "";
}

.venture-card:hover,
.venture-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(24, 24, 20, 0.17);
}

.venture-card:focus-visible,
.social-links a:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.revfactor {
  background: #0d3ea4;
}

.blackbird {
  background: #2e241c;
}

.book-village {
  color: #201a14;
  background: #d9a04a;
}

.card-number {
  align-self: start;
  padding-top: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.card-copy {
  display: grid;
  gap: 4px;
}

.card-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 7vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.card-copy > span {
  max-width: 360px;
  color: currentColor;
  font-size: 0.83rem;
  opacity: 0.72;
}

.card-action {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  align-self: end;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-action svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.venture-card:hover .card-action svg {
  transform: translate(2px, -2px);
}

.podcast-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 160px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid rgba(24, 24, 20, 0.8);
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.7);
  backdrop-filter: blur(12px);
}

.podcast-card::after {
  position: absolute;
  right: -16px;
  bottom: -42px;
  color: rgba(24, 24, 20, 0.04);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10rem;
  line-height: 1;
  content: "?";
}

.signal {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
}

.signal span {
  width: 3px;
  border-radius: 2px;
  background: var(--paper);
}

.signal span:nth-child(1),
.signal span:nth-child(5) { height: 10px; }
.signal span:nth-child(2),
.signal span:nth-child(4) { height: 20px; }
.signal span:nth-child(3) { height: 30px; }

.podcast-label {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.podcast-card h3 {
  max-width: 430px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.soon-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.social {
  margin-top: 56px;
}

.social-links {
  border-top: 1px solid var(--ink);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  text-decoration: none;
  transition: padding 160ms ease, color 160ms ease;
}

.social-links a:hover {
  padding-right: 8px;
  padding-left: 8px;
  color: var(--orange);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (min-width: 640px) {
  .shell {
    padding-top: 28px;
  }

  .hero {
    padding-top: 68px;
  }

  .portrait {
    width: 112px;
    height: 112px;
  }

  .venture-card {
    min-height: 154px;
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .location {
    display: none;
  }

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

  .card-action {
    grid-column: 2;
    margin-top: 10px;
    justify-self: start;
  }

  .podcast-card {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
