.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: 8rem;
  background: radial-gradient(circle at 78% 30%,#252100 0,transparent 24%),var(--brand-secondary);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  min-height: calc(100svh - 10rem);
  padding-bottom: 4rem;
}

.hero__lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: var(--brand-muted);
  font-size: clamp(1rem,2vw,1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 27rem;
}

.phone-shape {
  position: relative;
  width: min(62vw,16rem);
  padding: .65rem;
  aspect-ratio: .5;
  border: 2px solid var(--brand-primary);
  border-radius: 2.7rem;
  transform: rotate(7deg);
  box-shadow: 0 0 0 8px rgba(255,215,0,.07),0 30px 80px rgba(0,0,0,.6);
}

.phone-shape::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  left: 50%;
  width: 35%;
  height: .4rem;
  border-radius: 1rem;
  background: #111;
  transform: translateX(-50%);
}

.phone-shape__screen {
  height: 100%;
  padding: 4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2.15rem;
  background: var(--brand-primary);
  color: var(--brand-dark-text);
}

.phone-shape__logo {
  width: min(100%, 10rem);
  margin: auto;
  filter: none;
}

.phone-shape small {
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero__badge {
  position: absolute;
  right: 2%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem;
  border: 1px solid var(--brand-border);
  border-radius: 1rem;
  background: rgba(20,20,20,.88);
  backdrop-filter: blur(10px);
}

.hero__badge strong {
  font: 800 2rem/1 var(--font-heading);
  color: var(--brand-primary);
}

.hero__badge span {
  font-size: .7rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__ticker {
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 1.5rem 0;
  background: transparent;
  font-weight: 800;
  letter-spacing: .06em;
  transform: none;
}

.hero__ticker-track {
  display: flex;
  width: max-content;
  padding-block: .72rem;
  background: var(--brand-primary);
  color: var(--brand-dark-text);
  transform: rotate(-1deg);
  transform-origin: left center;
  animation: continuous-ticker 28s linear infinite;
}

.hero__ticker-track span {
  flex: none;
  padding-inline: .35rem;
  white-space: nowrap;
}

@keyframes continuous-ticker {
  from {
    transform: rotate(-1deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(-1deg) translate3d(-25%, 0, 0);
  }
}

@media(min-width:768px) {
  .hero__grid {
    grid-template-columns: 1.25fr .75fr;
  }

  .hero__visual {
    min-height: 38rem;
  }

  .hero__badge {
    right: 0;
  }

  .hero__content {
    padding-top: 2rem;
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero__ticker-track {
    animation-play-state: paused;
  }
}
