.hero {
  position: relative;
  padding: 6rem 0 4rem;
  border-bottom: 1px solid #cccccc;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 0;
}
.hero-visual {
  margin-top: 4rem;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #cccccc;
  padding: 0;
}
.hero-split .hero-text {
  padding: 6rem 4rem 4rem 2rem;
  border-right: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split .hero-text h1 {
  max-width: 22ch;
  margin-bottom: 1rem;
}
.hero-split .hero-panel {
  background: #e8edf3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 4rem;
}
@media (max-width: 760px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-split .hero-text {
    border-right: none;
    padding: 4rem 2rem;
  }
  .hero-split .hero-panel {
    padding: 2rem;
  }
}
.value-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 760px) {
  .value-strip {
    grid-template-columns: 1fr;
  }
}
.value-card {
  display: block;
  height: 100%;
  padding: 2rem;
  border-right: 1px solid #cccccc;
  border-top: 3px solid #1a3556;
  color: inherit;
  border-bottom: none;
  transition: background 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.value-card:hover {
  background: #e8edf3;
  color: inherit;
  border-bottom: none;
}
.value-strip > li:last-child .value-card {
  border-right: none;
}
.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 0.84rem;
  font-weight: 300;
  color: #555555;
  margin: 0;
  line-height: 1.7;
}
.value-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--arc);
}
.value-cue::after {
  content: "\2192";
  transition: transform 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.value-card:hover .value-cue::after {
  transform: translateX(3px);
}
.free-route-band {
  background: #ffffff;
}
.free-route-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: center;
  border-left: 3px solid #1a3556;
  padding-block: 0.75rem;
}
.free-route-callout h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 1.6rem, 1.65rem);
}
.free-route-callout p:not(.eyebrow) {
  margin: 0;
  color: #555555;
  font-weight: 300;
}
@media (max-width: 760px) {
  .free-route-callout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .free-route-callout .btn {
    justify-self: start;
  }
}
