.s-hero { padding: 60px 24px 0; }

.s-hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 48px;
}

.s-hero__label {
  font-family: var(--f-nohemi);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 28px;
  display: block;
}

.s-hero__title {
  font-family: var(--f-neue);
  font-size: clamp(1.75rem, 3.5vw, var(--fs-h1));
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.0;
  color: var(--c-black);
  max-width: 40vw;
}

.s-hero__desc {
  font-family: var(--f-aeonik);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-grey);
  line-height: 1.7;
  max-width: 320px;
  margin-left: auto;
}

.s-hero__media {
  width: 100%;
  border-radius: var(--r-xl);
  background: var(--c-black);
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-hero__media-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: .4;
  pointer-events: none;
}

.s-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-yellow);
  color: var(--c-black);
  font-family: var(--f-aeonik);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
  z-index: 2;
}
.s-hero__pill:hover {
  background: #d4e600;
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(237,255,0,.3);
}

.s-hero__pill-icon {
  width: 20px;
  height: 20px;
  background: var(--c-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s-hero__pill-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--c-yellow);
  margin-left: 1px;
}

@media (max-width: 900px) {
  .s-hero__top { grid-template-columns: 1fr; gap: 32px; }
  .s-hero__desc { margin-left: 0; max-width: 100%; }
  .s-hero__media { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  .s-hero { padding: 40px 24px 0; }
}
