.kw-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.25rem 2.5rem;
}

.kw-hero__glow,
.kw-hero__orb {
  position: absolute;
  pointer-events: none;
}

.kw-hero__glow {
  inset: -10% 10% auto;
  height: 18rem;
  background: radial-gradient(ellipse at center, rgba(var(--brand-rgb), 0.22), transparent 68%);
}

.kw-hero__orb {
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.35;
}

.kw-hero__orb--a {
  top: 2rem;
  left: -4rem;
  background: var(--brand-deep);
  animation: kwHeroFloat 9s ease-in-out infinite;
}

.kw-hero__orb--b {
  top: 8rem;
  right: -3rem;
  background: var(--brand-light);
  animation: kwHeroFloat 11s ease-in-out infinite reverse;
}

@keyframes kwHeroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, -18px, 0); }
}

.kw-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.kw-hero__badge,
.kw-hero__title,
.kw-hero__lead,
.kw-hero__search,
.kw-hero__actions,
.kw-hero__stats {
  animation: kwHeroIn 0.55s ease both;
}

.kw-hero__badge { animation-delay: 0.02s; }
.kw-hero__title { animation-delay: 0.08s; }
.kw-hero__lead { animation-delay: 0.14s; }
.kw-hero__search { animation-delay: 0.2s; }
.kw-hero__actions { animation-delay: 0.26s; }
.kw-hero__stats { animation-delay: 0.34s; }

@keyframes kwHeroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.kw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2rem;
  padding: 0 0.85rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  background: rgba(8, 10, 16, 0.72);
  color: var(--brand-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kw-hero__live {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: kwHeroPulse 1.8s ease-out infinite;
}

@keyframes kwHeroPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.65); }
  70% { box-shadow: 0 0 0 0.45rem rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.kw-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
  color: #fff;
}

.kw-hero__title-accent {
  background: linear-gradient(90deg, var(--brand-soft), var(--brand) 55%, var(--brand-light));
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kwHeroShine 5s linear infinite;
}

@keyframes kwHeroShine {
  0% { background-position: 0% center; }
  100% { background-position: 180% center; }
}

.kw-hero__lead {
  margin: 0 0 1.55rem;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.kw-hero__lead span {
  color: var(--brand-soft);
  font-weight: 700;
}

.kw-hero__search {
  width: 100%;
  max-width: 36rem;
  margin-bottom: 1rem;
}

.kw-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 36rem;
}

.kw-hero__link {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.4rem;
  padding: 0.7rem 0.75rem 0.7rem 0.75rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 90% at 0% 0%, hsl(var(--primary) / 0.12), transparent 52%),
    rgba(8, 10, 16, 0.62);
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kw-hero__link:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.kw-hero__link.is-hot {
  border-color: rgba(var(--brand-rgb), 0.38);
  background:
    radial-gradient(120% 90% at 0% 0%, hsl(var(--primary) / 0.24), transparent 55%),
    rgba(8, 10, 16, 0.72);
}

.kw-hero__link-icon,
.kw-hero__link-go {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: rgba(var(--brand-rgb), 0.16);
  color: var(--brand-soft);
}

.kw-hero__link-icon svg,
.kw-hero__link-go svg {
  width: 1.1rem;
  height: 1.1rem;
}

.kw-hero__link-go {
  border-radius: 999px;
  background: var(--brand);
  color: #111;
  transition: transform 0.2s ease;
}

.kw-hero__link:hover .kw-hero__link-go {
  transform: translateX(3px);
}

.kw-hero__link-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.kw-hero__link-copy small {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.kw-hero__link-copy strong {
  font-size: 0.95rem;
  font-weight: 750;
  color: #fff;
  line-height: 1.25;
}

.kw-hero__off {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: 2.15rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: var(--brand);
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
}

.kw-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  max-width: 36rem;
  margin-top: 1.35rem;
}

.kw-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 0.85rem 0.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 10, 16, 0.5);
  animation: kwHeroIn 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 70ms);
}

.kw-hero__stat strong {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.kw-hero__stat strong svg {
  width: 1rem;
  height: 1rem;
  color: #facc15;
  fill: #facc15;
}

.kw-hero__stat span {
  margin-top: 0.25rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.kw-hero__stat.is-support {
  border-color: rgba(var(--brand-rgb), 0.28);
  background: rgba(var(--brand-rgb), 0.1);
  cursor: pointer;
}

.kw-hero__stat.is-support:hover {
  background: rgba(var(--brand-rgb), 0.18);
}

@media (max-width: 640px) {
  .kw-hero {
    padding-top: 2.4rem;
  }

  .kw-hero__link {
    gap: 0.65rem;
    padding-right: 0.65rem;
  }

  .kw-hero__link-copy strong {
    font-size: 0.86rem;
  }

  .kw-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}