.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 40px !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  position: relative;
  z-index: 1;
}

.hero-g {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.hero-t {
  font-size: 82px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 2rem;
}

.hero-t span {
  display: block;
}

.hero-t .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-s {
  font-size: var(--body-lg);
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-ch {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  margin-bottom: 2.5rem;
}

.hero-ch li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.hero-ch li i {
  color: #1D7C6E;
  font-size: .7rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Dashboard card */
.dash-card {
  padding: 2rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .3);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.dash-row:last-of-type {
  border-bottom: none;
}

.dash-label {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

.dash-val {
  font-size: 1.6rem;
  font-weight: 800;
}

.dash-val.green {
  color: #4ADE80;
}

.dash-val i {
  font-size: .85rem;
  margin-right: .35rem;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
