/* ==========================================================================
   HLEV — styles.css
   Mobile-first styles
   ========================================================================== */
/* ==========================================================================
   Global
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}
.hlev-id {
  width: 230px; /* 180px */
}
.container {
  background-color: var(--surface);
  padding: 10px;
  margin-bottom: 10px;
}
.container.header-inner {
  margin-bottom: 0;
  padding: 20px;
}
.container .inner, .container .cta-band-inner {
  color: #fff;
  background-color: var(--accent);
  border-radius: var(--radius);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.container .inner > *:not(img):not(video):not(.media):not(.cta-arrow-link), .container .cta-band-inner > *:not(img):not(video):not(.media):not(.cta-arrow-link) {
  width: auto;
  max-width: 100%;
}
#home .inner p:first-of-type {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--sky);
}
#home .inner p:first-of-type strong {
  font-weight: 500;
  color: #fff;
}
.intro {
  padding: 20px 20px 30px;
}
.eyebrow {
  font-size: 16px !important;
  font-weight: 700;
  color: #3F5E8C;
  border: 1px solid #91A0B8;
  border-radius: 20px;
  padding: 10px 20px !important;
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
}
.eyebrow.reversed {
  color: #C4CDD4;
  border: 1px solid #C4CDD4;
}
/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-band h2 {
  font-size: 50px;
  font-weight: 600;
  padding-top: 50px;
  padding-bottom: 20px;
  max-width: 500px !important;
}
.cta-band .cta-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cta-band .cta-side > * {
  width: auto;
  max-width: 100%;
}
.cta-band .cta-side p {
  font-size: 16px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  color: #fff !important;
  max-width: 380px;
}
.cta-band .inner {
  position: relative;
  padding-bottom: 65px;
}
.cta-band .inner > a.cta-arrow-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 90px !important;
  height: 90px !important;
  min-width: 90px;
  min-height: 90px;
  max-width: none !important;
  flex: none;
  z-index: 20;
  background: url("/img/arrow-yellow.svg") no-repeat center / contain;
}
.cta-band .inner > a.cta-arrow-link:hover, .cta-band .inner > a.cta-arrow-link:focus-visible {
  transform: scale(1.04);
}
.cta-band .inner > a.cta-arrow-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
/* ==========================================================================
   Footer
   ========================================================================== */
footer .footer-inner {
  background-color: transparent;
  padding: 20px 10px 20px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  align-items: start;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer li + li {
  margin-top: 10px;
}
.footer-nav {
  grid-column: 1 / 3;
  align-self: start;
}
.footer-legal {
  grid-column: 3 / 5;
  align-self: start;
}
.footer-brand {
  grid-column: 1 / -1;
  padding-top: 25px;
  align-self: start;
}
footer a, footer a:visited {
  font-weight: 500;
  color: #56646C;
  text-decoration: none;
}
footer a:hover, footer a:active {
  color: var(--ink);
  text-decoration: none;
}
#home footer .nav-home a, #strategy footer .nav-strategy a, #firm footer .nav-firm a, #contact footer .nav-contact a, #business.terms footer .nav-terms a, #business.privacy footer .nav-privacy a {
  color: var(--ink);
}
footer address {
  font-style: normal;
  font-weight: 500;
  padding-top: 10px;
}
footer .footer-copy {
  font-size: 14px;
  margin-top: 30px;
  border-top: 1px solid var(--ink);
  background-color: transparent;
  padding-bottom: 0;
}
/* ==========================================================================
   Media / image system
   ========================================================================== */
figure {
  margin: 0;
}
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: var(--surface);
}
.media img, .media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}
.media-square {
  aspect-ratio: 1 / 1;
}
.media-portrait {
  aspect-ratio: 4 / 5;
}
.media-landscape {
  aspect-ratio: 4 / 3;
}
.media-wide {
  aspect-ratio: 2 / 1;
}
.figcaption, .work-shot-caption {
  display: none;
}
/* ==========================================================================
   Mobile Nav
   ========================================================================== */
.site-header {
  position: relative;
  background: var(--paper);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  display: none;
  padding: 40px var(--container-pad) 60px;
  margin-top: 20px;
  z-index: 200;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li + li {
  margin-top: 16px;
}
.site-nav li a {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  width: 100%;
  text-decoration: none;
}
.nav-open .site-nav {
  display: block;
}
.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 300;
}
.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .nav-toggle .bar:nth-child(3) {
  opacity: 0;
}
.nav-open .nav-toggle .bar:nth-child(2) {
  transform: translateY(8px) rotate(45deg);
}
.nav-open .nav-toggle .bar:nth-child(4) {
  transform: translateY(-8px) rotate(-45deg);
}
/* ==========================================================================
   Home
   ========================================================================== */
#home .container.header-inner {
  padding-bottom: 0;
}
#home .intro {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 30px 30px 60px;
}
#home h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.10;
  color: var(--accent);
  display: inline;
}
#home .intro p {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.10;
  color: var(--ink);
  display: inline;
}
/*#home .intro::before, #home .intro::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
#home .intro::before {
  top: 0;
  right: 10px;
  width: 66px;
  height: 90px;
  background: url("/img/hl-monogram.svg") no-repeat center / contain;
  opacity: .3;
   transform: rotate(15deg);
}*/
#home .intro::after {
  bottom: 20px;
  left: 20px;
  width: 66px;
  height: 90px;
  background: url("/img/hl-monogram.svg") no-repeat center / contain;
  opacity: .3;
  transform: rotate(-15deg);
}
#home .intro > * {
  position: relative;
  z-index: 1;
}
#home .strategy, #home .firm {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#home .strategy-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
#home .strategy .inner .btn, #home .firm .inner .btn {
  margin-top: 0;
}
/* ==========================================================================
   Subpages
   ========================================================================== */
.subpage .intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 30px 30px;
}
.subpage h1 strong {
  font-weight: 700;
  color: var(--ink);
}
/* ==========================================================================
   Business Pages
   ========================================================================== */
#business main h1 {
  margin-bottom: 20px;
}
#business main h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}
#business main h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}
#business main p {
  margin-bottom: .5rem;
}
#business main ul {
  margin: .5rem 0 20px 20px;
  padding-left: 0;
}
#business main li {
  margin-bottom: 5px;
}
#business main address {
  font-style: normal;
  margin-top: 10px;
}
#business main section:last-child {
  margin-bottom: 0;
}
#business main a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
#business main a:hover {
  text-decoration-thickness: 2px;
}
#business main a:visited {
  color: var(--ink);
}
#business main a.btn,
#business main a.btn:visited {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}
#business footer {
  margin-top: 10px;
}
/* ==========================================================================
   Strategy
   ========================================================================== */
#strategy .intro .intro-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
#strategy .intro p:first-of-type {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}
#strategy .intro-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#strategy .intro-copy h2 strong {
  color: var(--accent);
}
#strategy .model .intro-copy {
  padding: 20px 20px 30px;
}
/* Flywheel */
.venture-diagram {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diagram-header {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
}
.diagram-header h3 {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}
.diagram-header p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
}
.diagram-body {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 10px;
}
.venture-shape {
  display: block;
  width: 100%;
  height: auto;
}
.venture-shape-desktop {
  display: none;
}
.venture-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 180px;
}
.venture-content h4 {
  font-size: 22px;
  line-height: 1.08;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-wrap: balance;
}
.venture-content-tech {
  top: 8.5%;
}
.venture-content-business {
  top: 61.5%;
}
.venture-list {
  list-style-type: square;
  padding-left: 1.2em;
  margin-top: 15px;
}
.venture-list li {
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
}
.venture-list li::marker {
  color: #FFCC00;
}
.venture-list li:last-child {
  margin-bottom: 0;
}
.venture-arrow {
  position: absolute;
  z-index: 3;
  display: block;
  width: 25px;
  height: 25px;
  background: url("/img/arrow-yellow-diagram.svg") no-repeat center / contain;
  pointer-events: none;
}
/* top circle */
.venture-arrow-tech-top {
  top: -0.75%;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
}
.venture-arrow-tech-left {
  top: 26.5%;
  left: 1.25%;
  transform: rotate(180deg);
}
.venture-arrow-tech-right {
  top: 26.5%;
  right: 1.25%;
  transform: none;
}
/* bottom circle */
.venture-arrow-business-left {
  top: 72%;
  left: 1.25%;
  transform: rotate(180deg);
}
.venture-arrow-business-right {
  top: 72%;
  right: 1.25%;
  transform: none;
}
.venture-arrow-business-bottom {
  bottom: -0.75%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.diagram-footer {
  text-align: center;
  padding-bottom: 20px;
}
.diagram-footer h4 {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #91A0B8;
  background: var(--surface);
  padding: 0 5px;
}
.diagram-footer h4::before, .diagram-footer h4::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 2px;
  background: #C4CDD4;
  transform: translateY(-50%);
}
.diagram-footer h4::before {
  right: 100%;
  margin-right: 6px;
}
.diagram-footer h4::after {
  left: 100%;
  margin-left: 6px;
}
.diagram-footer p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
}
.diagram-footer p span {
  color: #91A0B8;
}
.venture-icons-desktop {
  display: none;
  pointer-events: none;
}
.venture-icon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.venture-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.process .intro-copy {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
/* Process diagram */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-step {
  position: relative;
}
.process-card {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.process-kicker {
  color: var(--sky);
}
.process-label {
  display: none;
}
.process-summary {
  text-align: center;
  font-weight: 500;
}
.process-step::before {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  margin: 0 auto 5px;
  background: #FFCC00;
}
.process-step:not(:last-child)::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 5px auto 0;
  background: #FFCC00;
}
.process-step:last-child::after {
  content: "";
  display: block;
  width: 10px;
  height: 30px;
  margin: 5px auto 0;
  background:
    linear-gradient(#FFCC00, #FFCC00) center top / 10px 10px no-repeat, linear-gradient(#FFCC00, #FFCC00) center bottom / 2px 20px no-repeat;
}
.ventures h3 {
  font-size: 16px;
  font-weight: 400;
}
.case-studies {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.case-study {
  display: grid;
  gap: 5px;
}
.case-studies h4 {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
}
.case-study-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}
.case-study-content {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
}
.case-study-content p {
  color: #C4CDD4;
  margin-top: 5px;
}
.case-study-highlights {
  list-style-type: square;
  padding-left: 1.2em;
  margin-top: 15px;
}
.case-study-highlights li::marker {
  color: #FFCC00;
}
.case-study-highlights li {
  margin-bottom: 10px;
}
.case-study-highlights li:last-child {
  margin-bottom: 0;
}
/* ==========================================================================
   Firm
   ========================================================================== */
#firm .intro {
  padding: 20px 10px 10px;
}
#firm .intro .intro-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#firm .intro .intro-copy h1, #firm .intro .intro-copy p {
  padding: 0 20px;
}
#firm .intro p:first-of-type {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}
#firm .intro .inner {
  padding: 30px 10px 10px;
}
#firm .intro .inner p:first-of-type {
  margin: 0 10px;
}
#firm .firm h2, #firm .firm > h2 + p {
  padding: 0 40px;
}
#firm .firm h2 {
  padding-top: 20px;
}
#firm .firm h2 + p {
  margin-top: 15px;
}
.team {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.team > li {
  min-width: 0;
}
#firm .intro .team {
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.team-card {
  display: flex;
  flex-direction: column;
  background-color: #3F5E8C;
  border-radius: 10px;
  padding: 5px 5px 20px;
  position: relative;
}
#firm .firm .team-info {
  padding: 0 10px;
}
#firm .intro .team-card {
  background-color: #fff;
}
.team-photo {
  background-color: #D1D8DC;
  border-radius: 7px;
  margin-bottom: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
#firm .intro .team-photo {
  border: 1px solid #C4CDD4;
}
.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}
.team-info {
  padding: 0 10px;
}
.team-name, .team-title {
  overflow-wrap: anywhere;
}
.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
#firm .intro .team-name {
  color: var(--ink);
}
.team-title {
  font-size: 15px !important;
  line-height: 1.2 !important;
  color: #C4CDD4;
  margin: 4px 0 0 !important;
  padding: 0 40px 0 0 !important;
}
#firm .intro .team-title {
  color: #1E2327;
  opacity: 0.6;
  padding: 0 40px 0 0 !important;
}
.team-linkedin {
  position: absolute;
  right: 15px;
  bottom: 20px;
}
.linkedin-icon {
  width: 25px;
  height: auto;
  opacity: 0.5;
  display: block;
}
#firm .intro .linkedin-icon {
  opacity: 0.22;
}
.team-linkedin:hover .linkedin-icon {
  opacity: 0.8;
}
/* ==========================================================================
   Contact
   ========================================================================== */
#contact.subpage .intro {
  margin-bottom: 0;
}
#contact p a {
  color: #C4CDD4;
  text-decoration: underline;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100% !important;
}
.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}
.contact-form label {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  padding: 10px 15px;
  font: inherit;
  color: var(--ink);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .btn {
  margin-top: 10px;
  align-self: flex-start;
}
#message-status.success {
  padding-top: 25px;
}
#message-status.success h2 {
  font-size: 25px;
  line-height: 30px;
}
/* ==========================================================================
   600 Breakpoint
   ========================================================================== */
@media (min-width: 600px) {}
/* ==========================================================================
   700 Breakpoint
   ========================================================================== */
@media (min-width: 700px) {
  #strategy .model .intro-copy h2 {
    max-width: 58%;
  }
   .venture-list {
    margin: 10px auto 0px;
    position: relative;
  }
  .venture-list li {
    margin-bottom: 5px;
  }
  /* Flywheel */
  .venture-diagram {
    gap: 40px;
  }
  .diagram-header {
    padding: 32px 40px 36px;
  }
  .diagram-header h3 {
    font-size: 24px;
  }
  .diagram-body {
    max-width: 1120px;
  }
  .venture-shape-mobile {
    display: none;
  }
  .venture-shape-desktop {
    display: block;
  }
  .venture-content {
    width: 26%;
  }
  .venture-content h4 {
    font-size: 22px;
  }
  .venture-content-tech {
    top: 10%;
    left: 27%;
  }
  .venture-content-business {
    top: 10%;
    left: 74%;
  }
  .venture-list {
    width: 190px;
    margin: 15px auto 0px;
    position: relative;
  }
  .venture-list li {
    font-size: 17px;
    line-height: 1.25;
  }
  .venture-arrow {
    width: 34px;
    height: 34px;
  }
  /* left circle */
  .venture-arrow-tech-top {
    top: -2%;
    left: 27.2%;
    transform: translateX(-50%) rotate(-90deg);
  }
  .venture-arrow-tech-left {
    top: 48.5%;
    left: -0.2%;
    transform: rotate(180deg);
  }
  .venture-arrow-tech-right {
    top: 96.2%;
    left: 27.2%;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
  }
  /* right circle */
  .venture-arrow-business-left {
    top: -2%;
    left: 72.8%;
    transform: translateX(-50%) rotate(-90deg);
  }
  .venture-arrow-business-right {
    top: 48.5%;
    right: -0.4%;
    left: auto;
    transform: none;
  }
  .venture-arrow-business-bottom {
    top: 96.2%;
    left: 72.8%;
    bottom: auto;
    transform: translateX(-50%) rotate(90deg);
  }
  .diagram-footer {
    padding-top: 0;
  }
  .diagram-footer h4::before, .diagram-footer h4::after {
    width: clamp(80px, 18vw, 220px);
    height: 2px;
  }
  .diagram-footer p {
    font-size: 16px;
    line-height: 1.35;
  }
  .case-study {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 5px;
    align-items: stretch;
  }
  .case-study-media, .case-study-content {
    height: 100%;
  }
  .case-study-media img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .team {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  #firm .intro .team {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
/* ==========================================================================
   900 Breakpoint
   ========================================================================== */
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .site-nav li + li {
    margin-top: 0;
  }
  .site-nav li a {
    font-size: 16px;
    color: var(--ink);
    transition: color .2s ease;
  }
  #strategy header .nav-strategy a, #firm header .nav-firm a, #contact header .nav-contact a {
    color: #6F8098;
  }
  .site-nav:hover a {
    color: #6F8098;
  }
  .site-nav li a:hover, #strategy header .nav-strategy a:hover, #firm header .nav-firm a:hover, #contact header .nav-contact a:hover {
    color: var(--ink);
  }
  .container {
    padding: 20px;
    margin-bottom: 20px;
  }
  .container.header-inner {
    padding: 40px 60px;
  }
  .container .inner {
    padding: 110px 40px;
    gap: 20px;
    align-items: flex-start;
  }
  .cta-band.container .inner {
    padding: 40px 40px 50px;
  }
  .cta-band .inner > a.cta-arrow-link {
    top: 40px;
    right: 40px;
    bottom: auto;
    width: 242px !important;
    height: 242px !important;
    min-width: 242px;
    min-height: 242px;
    max-width: none !important;
  }
  .cta-band .cta-content {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--gap);
    margin-top: 280px;
    align-items: end;
  }
  .cta-band h2 {
    grid-column: 1 / 6;
    font-size: 65px;
    padding-top: 0;
    padding-bottom: 0;
    max-width: none !important;
    align-self: end;
  }
  .cta-band .cta-side {
    grid-column: 6 / 9;
    align-self: end;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  #home .inner p:first-of-type {
    font-size: 25px;
    line-height: 1.15;
  }
  #home .intro {
    padding: 60px 90px 60px;
  }
  #home h1, #home .intro p {
    font-size: 40px;
  }
 /* #home .intro::before {
    top: 0;
    right: 40px;
    width: 128px;
    height: 175px;
  }
  #home .intro::after {
    bottom: 0px;
    left: 55px;
    width: 128px;
    height: 175px;
  }*/
  #home .strategy.container {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
  }
  #home .strategy.container .inner {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    min-height: 0;
  }
  #home .strategy.container .strategy-images {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 100%;
    min-height: 0;
  }
  #home .strategy.container .strategy-shot-square {
    height: 100%;
    min-height: 0;
  }
  #home .strategy.container .strategy-shot-wide {
    grid-column: 7 / 9;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 0;
  }
  #home .strategy.container figure {
    margin: 0;
    height: 100%;
    min-height: 0;
  }
  #home .strategy.container .media, #home .strategy.container .media-square, #home .strategy.container .media-wide {
    width: 100%;
    height: 100%;
  }
  #home .strategy.container .media-square, #home .strategy.container .media-wide {
    aspect-ratio: auto;
  }
  #home .strategy.container .media img, #home .strategy.container .media-square img, #home .strategy.container .media-wide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #home .firm.container {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }
  #home .firm.container .building-shot {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    height: 100%;
    min-height: 0;
  }
  #home .firm.container .inner {
    grid-column: 4 / 9;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    min-height: 0;
  }
  #home .firm.container figure {
    margin: 0;
    height: 100%;
    min-height: 0;
  }
  #home .firm.container .media, #home .firm.container .media-square {
    width: 100%;
    height: 100%;
  }
  #home .firm.container .media-square {
    aspect-ratio: auto;
  }
  #home .firm.container .media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  footer .footer-inner {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: var(--gap);
    align-items: start;
    padding: 20px 60px 20px;
  }
  .footer-brand {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
    padding-top: 0;
    align-self: start;
  }
  .footer-nav {
    grid-column: 5 / 7;
    grid-row: 1 / 2;
    align-self: start;
  }
  .footer-legal {
    grid-column: 7 / 9;
    grid-row: 1 / 2;
    align-self: start;
  }
  .subpage .intro {
    padding: 20px 60px 30px;
  }
  #firm .intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    padding: 20px;
  }
  #firm .intro .intro-copy {
    grid-column: 1 / 2;
    padding: 0 30px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #firm .intro .intro-copy h1, #firm .intro .intro-copy p {
    padding: 0;
  }
  #firm .intro .inner {
    grid-column: 2 / 3;
    padding: 40px;
    gap: 40px;
  }
  #firm .intro .inner p:first-of-type {
    margin: 0;
  }
  #firm .firm {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
  }
  #firm .firm h2 {
    grid-column: 1 / 9;
  }
  #firm .firm > h2 + p {
    grid-column: 1 / 6;
  }
  #firm .firm .team {
    grid-column: 1 / 9;
  }
  .team {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  #firm .intro .team {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .team-card {
    padding: 10px 10px 20px;
  }
  #strategy .intro {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
  }
  #strategy .intro .intro-copy {
    grid-column: 1 / 7;
  }
  #strategy .model .intro-copy {
    padding: 20px 40px 40px;
  }
  #strategy .ventures .intro-copy {
    padding: 20px 0 20px 40px;
  }
  #strategy .process .intro-copy {
    gap: 30px;
  }
  /* Flywheel */
  .venture-content-tech {
    top: 17%;
    left: 27%;
  }
  .venture-content-business {
    top: 17%;
    left: 74%;
  }
  .process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    position: relative;
  }
  .process-list::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35px;
    height: 2px;
    background: #C4CDD4;
  }
  .process-list::after {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 15.5%;
    right: 15.5%;
    height: 4px;
    background: #FFCC00;
    z-index: 0;
  }
  .process-step {
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: stretch;
  }
  .process-card {
    height: 100%;
  }
  .process-step::before, .process-step::after, .process-step:not(:last-child)::after, .process-step:last-child::after {
    content: none;
  }
  .process-label {
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .process-label::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #FFCC00;
    display: block;
  }
  .process-summary {
    display: none;
  }
  .ventures {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }
  .ventures .intro-copy {
    grid-column: 1 / 3;
    margin-bottom: 0;
  }
  .ventures .case-studies {
    grid-column: 3 / 9;
    margin: 0;
  }
  .case-study {
    gap: 10px;
  }
  .case-study-content {
    padding: 40px;
  }
  .wrapper {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 20px;
  }
  .wrapper .intro {
    grid-column: 1 / 5;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 33% 60px 30px;
  }
  #contact .wrapper .contact .inner {
    padding: 40px 40px 60px;
  }
  .wrapper .contact {
    grid-column: 5 / 9;
    margin-bottom: 0;
    height: 100%;
    padding: 0 20px 20px;
  }
  .wrapper .contact .inner {
    height: 100%;
  }
  #business footer {
  margin-top: 20px;
}
}
/* ==========================================================================
   1000 Breakpoint
   ========================================================================== */
@media (min-width: 1000px) {
 
  .venture-content-tech {
    top: 22%;
    left: 27%;
  }
  .venture-content-tech h4 {
    padding: 0 8%;
  }
 
  .venture-content-business {
    top: 22%;
    left: 74%;
  }
   .venture-content-business h4 {
    padding: 0 1%;
  }
  .venture-icons-desktop {
    display: block;
  }
  .venture-icon {
    width: 34px;
  }
  /* ---------- LEFT CIRCLE (Technology) ---------- */
  .icon-tech-chem {
    top: 22%;
    left: 10%;
  }
  .icon-tech-chip {
    top: 9%;
    left: 24%;
  }
  .icon-tech-echem {
    top: 16%;
    left: 39%;
  }
  .icon-tech-grant {
    top: 47%;
    left: 6%;
  }
  .icon-tech-science {
    top: 77%;
    left: 39%;
  }
  .icon-tech-engineering {
    top: 85%;
    left: 25%;
  }
  .icon-tech-reservoir {
    top: 75%;
    left: 11%;
  }
  /* ---------- RIGHT CIRCLE (Business) ---------- */
  .icon-business-infrastructure {
    top: 15%;
    left: 59%;
    width: 38px;
  }
  .icon-business-regulatory {
    top: 10%;
    left: 75%;
    width: 38px;
  }
  .icon-business-mlp-reit {
    top: 30%;
    right: 7%;
    width: 38px;
  }
  .icon-business-project-funding {
    top: 61%;
    right: 7%;
  }
  .icon-business-tech-ip {
    top: 78%;
    left: 59%;
  }
  .icon-business-drillco {
    top: 84%;
    left: 75%;
  }
  /* ---------- OVERLAP ---------- */
  .icon-overlap-global {
    top: 35%;
    left: 48.5%;
    width: 34px;
    z-index: 4;
  }
  .icon-overlap-saas {
    top: 55%;
    left: 48.5%;
    width: 34px;
    z-index: 4;
  }
}
/* ==========================================================================
   1200 Breakpoint
   ========================================================================== */
@media (min-width: 1200px) {
  #strategy .model .intro-copy h2 {
    max-width: 50%;
  }
  .venture-diagram {
    padding: 0 20px 20px;
  }
  /* Flywheel */
  .venture-content-tech {
    top: 29%;
    left: 27%;
  }
  .venture-content-business {
    top: 29%;
    left: 74%;
  }
  .venture-icon {
    width: 44px;
  }
  .venture-icon img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* ---------- LEFT CIRCLE (Technology) ---------- */
  .icon-tech-chem {
    top: 21%;
    left: 9%;
  }
  .icon-tech-chip {
    top: 8%;
    left: 22%;
  }
  .icon-tech-echem {
    top: 13%;
    left: 37%;
  }
  .icon-tech-grant {
    top: 47%;
    left: 5%;
  }
  .icon-tech-science {
    top: 79%;
    left: 38%;
  }
  .icon-tech-engineering {
    top: 85%;
    left: 23%;
  }
  .icon-tech-reservoir {
    top: 72%;
    left: 10%;
  }
  /* ---------- RIGHT CIRCLE (Business) ---------- */
  .icon-business-infrastructure {
    top: 14%;
    left: 58%;
    width: 50px;
  }
  .icon-business-regulatory {
    top: 9%;
    left: 76%;
    width: 50px;
  }
  .icon-business-mlp-reit {
    top: 30%;
    right: 6%;
    width: 50px;
  }
  .icon-business-project-funding {
    top: 63%;
    right: 7%;
  }
  .icon-business-tech-ip {
    top: 76%;
    left: 58%;
  }
  .icon-business-drillco {
    top: 84%;
    left: 74%;
  }
  /* ---------- OVERLAP ---------- */
  .icon-overlap-global {
    top: 34%;
    left: 48.3%;
    width: 44px;
    z-index: 4;
  }
  .icon-overlap-saas {
    top: 56%;
    left: 48.3%;
    width: 44px;
    z-index: 4;
  }
  .process-list {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
  }
  .process-step:nth-child(1) {
    grid-column: 2 / 4;
  }
  .process-step:nth-child(2) {
    grid-column: 4 / 6;
  }
  .process-step:nth-child(3) {
    grid-column: 6 / 8;
  }
  .process-list::after {
    left: 24%;
    right: 24%;
  }
}