.hero{
  position: relative;
  padding: 34px 0 22px;
  background:
    radial-gradient(1200px 520px at 70% 40%, rgba(59,130,246,.18) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(241,248,255,.94) 0%, #fff 78%);
  overflow: hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,.14) 0%, transparent 35%),
    radial-gradient(circle at 80% 35%, rgba(96,165,250,.18) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cg fill='none' stroke='rgba(59,130,246,0.12)' stroke-width='1'%3E%3Cpath d='M0 55H220M0 110H220M0 165H220'/%3E%3Cpath d='M55 0V220M110 0V220M165 0V220'/%3E%3C/g%3E%3C/svg%3E");
  opacity:.55;
  pointer-events:none;
  filter: blur(.2px);
}

.hero-inner{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}

.hero-copy .kicker{
  display:inline-block;
  color: rgba(30,64,175,.86);
  font-weight: 850;
  margin-bottom: 10px;
}

.hero-copy .h1{
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}

.hero-copy .lead{
  max-width: 58ch;
  margin: 0 0 16px;
}

.hero-badges{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.hb{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  min-width: 0;
}

.hb-ic{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(2,132,199,.12);
  border: 1px solid rgba(2,132,199,.14);
  color: rgba(15,23,42,.92);
  flex: 0 0 32px;
}

.hb-code{
  font-weight: 950;
  letter-spacing: -.01em;
  color: rgba(15,23,42,.92);
  white-space: nowrap;
}

.hb-txt{
  color: rgba(100,116,139,.95);
  font-weight: 750;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-visual{
  display:flex;
  flex-direction:column;
  gap: 14px;

  width: 100%;
  max-width: 560px;     
  justify-self: end;
}

.hero-panel{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 20px 55px rgba(2,6,23,.10);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
}

.hero-panel-hd{
  padding-bottom: 10px;
}

.hero-media{
  padding-top: 6px;
}

.hero-ill{
  width:100%;
  display:block;
  border-radius: 16px;
  border: 1px solid rgba(226,232,240,.92);
  box-shadow: 0 16px 36px rgba(2,6,23,.10);
}

.hero-ill-main{
  border-radius: 18px;
}

.hero-mini{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.hero-mini-card{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 18px 44px rgba(2,6,23,.08);
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(6px);
  padding: 10px;
}

.hero-mini-hd{
  font-weight: 900;
  letter-spacing: -.01em;
  color: rgba(15,23,42,.92);
  font-size: 14px;
  margin: 0 0 8px;
}

.hero-mini-bd{
  border-radius: 14px;
  overflow:hidden;
  aspect-ratio: 16 / 9;
}

.hero-ill-mini{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;

  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-copy .lead{ max-width: none; }

  .hero-visual{
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-mini{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .hero-badges{ grid-template-columns: 1fr; }
  .hb{ border-radius: 18px; }
}

.hero-badges-right{
  margin-top: 8px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-badges-right .hb{
  justify-content: flex-start;
}

@media (max-width: 980px){
  .hero-badges-right{
    grid-template-columns: 1fr;
  }
}