/* Hero presentation, portfolio charts and carousel states. */
.hero {
  background:
    radial-gradient(circle at 75% 48%, rgba(41, 103, 163, .21), transparent 34%),
    linear-gradient(112deg, #07162e, #071c38 54%, #06182f);
  color: #fff;
}

.hero__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 512px;
  align-items: center;
}

.hero__content { padding: 64px 18px 44px 12px; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 3.2vw, 3.15rem);
  line-height: 1.25;
  letter-spacing: -.052em;
}

.hero__lead {
  max-width: 465px;
  margin: 26px 0 30px;
  color: #d7dfec;
  font-size: .88rem;
}

.hero__actions {
  display: flex;
  gap: 15px;
}

.slider-dots {
  display: flex;
  gap: 13px;
  margin-top: 50px;
}

.slider-dots button {
  width: 29px;
  height: 3px;
  padding: 0;
  border: 0;
  background: #435675;
  cursor: pointer;
  transition: background .25s ease;
}

.slider-dots .is-active { background: var(--accent); }

.hero-chart {
  min-width: 0;
  padding: 44px 0 44px 24px;
}

.hero-chart__slides {
  display: grid;
}

.hero-chart__slide {
  grid-area: 1 / 1;
  align-self: start;
  opacity: 0;
  visibility: hidden;
  filter: blur(2px);
  pointer-events: none;
  transition: opacity .55s ease, visibility 0s linear .55s, filter .55s ease;
}

.hero-chart__slide.is-active {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.hero-chart__head {
  display: flex;
  padding: 0 41px 17px 18px;
  color: #e3ebf7;
  font-size: .75rem;
}

.hero-chart__head p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e3ebf7;
}

.hero-chart__head span {
  display: block;
  margin: 12px 0 0 16px;
  color: #91a8c4;
  font-size: .7rem;
}

.hero-chart__head .live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(67, 209, 132, .55);
  animation: live-pulse 1.7s infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(67, 209, 132, .54); }
  65% { box-shadow: 0 0 0 8px rgba(67, 209, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(67, 209, 132, 0); }
}

.hero-equity,
.report-equity { width: 100%; }

.svg-grid { fill: none; stroke: rgba(137, 173, 213, .14); stroke-width: 1; }
.report-equity .chart-fill { fill: url(#reportAreaNew); }
.chart-primary {
  fill: none;
  stroke: #bce0ff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-equity .chart-endpoint {
  fill: #d9efff;
  stroke: #8fc7f3;
  stroke-width: 2;
}

.axis {
  fill: #b7c6da;
  font-size: 12px;
  font-family: "Manrope", Arial, sans-serif;
}

.axis-title {
  fill: #8da4bf;
  font-size: 11px;
  font-family: "Manrope", Arial, sans-serif;
}

.hero-chart__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 24px;
  padding: 0 41px 0 18px;
  color: #90a5bf;
  font-size: .65rem;
}

.hero-chart__metrics span {
  display: grid;
  gap: 4px;
}

.hero-chart__metrics strong {
  color: #e3ebf7;
  font-size: .78rem;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 20px; }
  .hero-chart { padding: 36px 0; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: 2.1rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero-chart__head {
    padding-right: 0;
    padding-left: 0;
  }
  .hero-chart__metrics {
    flex-wrap: wrap;
    gap: 13px 24px;
    padding: 0;
  }
  .hero-chart__metrics span { width: calc(50% - 12px); }
}
