.home-hero {
  isolation: isolate;
  background: var(--background-alt);
  border-bottom: 1px solid var(--border);
}

.home-hero .accent-orb {
  display: none;
}

.home-hero .accent-orb[data-blue] {
  display: none;
}

.home-hero .hero-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-hero .hero-panel ul {
  padding-left: 18px;
  margin: 0;
  color: #f2f4fb;
  line-height: 1.7;
}

.home-hero .hero-panel ul li {
  margin-bottom: 8px;
}

.highlight-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 16px 0 36px;
}

.highlight-tile {
  position: relative;
  border-radius: var(--rounded);
  background: var(--background-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.highlight-tile > div {
  padding: 28px 24px 0;
}

.highlight-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.highlight-tile h3 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: 1.2rem;
  color: var(--primary);
  padding: 28px 24px 0;
}

.highlight-tile p:not(.tagline) {
  margin: 0;
  color: var(--dark-gray);
  line-height: 1.7;
  padding: 0 24px;
}

.highlight-tile .tagline {
  margin-top: 12px;
  color: var(--secondary);
  font-weight: var(--semi-bold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 24px 28px;
}

.highlight-tile .image-chip {
  width: 100%;
  height: 200px;
  overflow: hidden;
  opacity: 1;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.highlight-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.signature-list span {
  padding: 8px 14px;
  border-radius: var(--rounded);
  background: rgba(1, 31, 91, 0.06);
  color: var(--primary);
  font-weight: var(--semi-bold);
  font-size: 0.9rem;
}

.equity-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  border-radius: var(--rounded);
  background: var(--background-alt);
  border: 1px solid var(--border);
  margin: 20px 0 36px;
}

.equity-band .equity-card {
  text-align: left;
  position: relative;
  padding: 12px 8px;
  transition: transform 0.3s ease;
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
}

.equity-band .equity-card:hover {
  transform: translateX(4px);
}

.equity-band h4 {
  margin: 0 0 8px;
  font-family: var(--heading);
  color: var(--primary);
}

.equity-band p {
  margin: 0;
  color: var(--dark-gray);
  line-height: 1.7;
}

.card-stack .card-tile {
  background: var(--background-alt);
  border: 1px solid var(--border);
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(16px, -12px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 900px) {
  .highlight-tiles {
    grid-template-columns: 1fr;
  }
  .equity-band {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .home-hero .accent-orb,
  .home-hero .accent-orb[data-blue] {
    display: none;
  }
}

/*# sourceMappingURL=home.css.map */