/* ============================================================
   Venture scoped overrides
   Owns the fixed top contact strip, utility pages, and small
   cross-page normalization outside the generated reference CSS.
   ============================================================ */

.venture-site h1,
.venture-site h2,
.venture-site h3,
.venture-site h4,
.venture-site h5,
.venture-site h6 {
  color: inherit;
}

.venture-site p {
  color: inherit;
}

.venture-top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #0b1220;
  color: rgba(244, 247, 250, 0.88);
  font-family: var(--font-body, "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif);
  font-size: 13px;
  line-height: 1;
}

.venture-top-strip__bar {
  width: min(var(--max-width, 1240px), calc(100% - 48px));
  min-height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.venture-top-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.venture-top-strip__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  white-space: nowrap;
}

.venture-top-strip__item svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #f2b65c;
}

.venture-top-strip__item a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.venture-top-strip__item a:hover,
.venture-top-strip__item a:focus-visible {
  color: #ffffff;
  outline: none;
}

@media (max-width: 1180px) {
  .venture-top-strip__item--wide {
    display: none;
  }
}

@media (max-width: 820px) {
  .venture-top-strip__bar {
    width: min(var(--max-width, 1240px), calc(100% - 28px));
  }

  .venture-top-strip__list {
    justify-content: center;
    gap: 14px;
  }

  .venture-top-strip__item--optional {
    display: none;
  }
}

@media (max-width: 420px) {
  .venture-top-strip {
    font-size: 12px;
  }

  .venture-top-strip__item svg {
    display: none;
  }
}

.venture-site .site-header {
  top: 40px;
}

.venture-site .page-shell {
  padding-top: calc(var(--header-h) + 74px);
}

.venture-site .utility-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 96px) 24px 80px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.09), rgba(171, 111, 4, 0.08)),
    var(--soft-surface, #f4f7fa);
}

.venture-site .utility-page__inner {
  width: min(100%, 720px);
  border: 1px solid var(--line-gray, #d8e0ea);
  border-radius: 8px;
  background: var(--card-white, #ffffff);
  padding: clamp(28px, 6vw, 56px);
  box-shadow: 0 18px 60px rgba(17, 24, 34, 0.08);
}

.venture-site .utility-page__eyebrow {
  margin: 0 0 14px;
  color: var(--tech-blue, #2563eb);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venture-site .utility-page h1 {
  margin: 0;
  color: var(--deep-navy, #111822);
  font-family: var(--font-display, "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.venture-site .utility-page p:not(.utility-page__eyebrow) {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--text-muted, #5a6472);
}

.venture-site .utility-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.venture-site .utility-page .cta-button {
  cursor: pointer;
  text-decoration: none;
}

.venture-site .utility-page__link {
  color: var(--tech-blue, #2563eb);
  font-weight: 650;
  text-decoration: none;
}

.venture-site .utility-page__link:hover,
.venture-site .utility-page__link:focus-visible {
  color: var(--tech-blue-dark, #1d4ed8);
  outline: none;
}
