.hero{
  padding: 86px 0 40px;
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: center;
}

.hero__title{
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.hero__subtitle{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__visual{
  display: flex;
  justify-content: flex-end;
}

.glow-card{
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.glow-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: var(--brand-grad);
  opacity: .18;
  filter: blur(18px);
}

.glow-card__top{
  position: relative;
  z-index: 1;
  display:flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.dot{ width: 10px; height: 10px; border-radius: 999px; opacity: .9; }
.dot--a{ background: #ff4d4d; }
.dot--b{ background: #ffcc00; }
.dot--c{ background: #2ee67b; }

.glow-card__content{
  position: relative;
  z-index: 1;
  padding: 18px 16px 22px;
}
.glow-card__title{ margin: 10px 0 14px; }
.glow-card__bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  width: 100%;
}
.glow-card__bar--sm{ width: 70%; margin-top: 10px; }

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__visual{ justify-content: flex-start; }
}