body:has(.venture-home) {
  background: #f4f3ee;
}

body:has(.venture-home) .topbar {
  border-bottom: 0;
  height: 88px;
  padding: 0 clamp(24px, 5vw, 72px);
}

body:has(.venture-home) .brand {
  font-size: .95rem;
  letter-spacing: .22em;
}

body:has(.venture-home) .nav-actions {
  display: none;
}

body:has(.venture-home) .app-shell {
  min-height: calc(100vh - 88px);
}

.venture-home {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 5vw, 72px) clamp(42px, 7vw, 88px);
}

.venture-copy {
  display: grid;
  gap: 22px;
}

.venture-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 6.8rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 650;
}

.venture-email {
  width: fit-content;
  color: #555550;
  text-decoration: none;
  font-size: clamp(.9rem, 1.5vw, 1rem);
  letter-spacing: .01em;
  transition: color .18s ease;
}

.venture-email:hover {
  color: #111;
}

@media (max-width: 650px) {
  body:has(.venture-home) .topbar {
    height: 76px;
    padding: 0 24px;
  }

  body:has(.venture-home) .app-shell,
  .venture-home {
    min-height: calc(100vh - 76px);
  }

  .venture-home {
    padding: 0 24px 38px;
  }

  .venture-copy {
    gap: 18px;
  }

  .venture-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }
}