.c-hero {
  position: relative;
  padding: 88px 0 108px;
  overflow: hidden;
  border-top: none !important;
}

.c-hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.c-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.c-hero__blob--1 {
  top: 20%;
  left: 22%;
  width: 384px;
  height: 384px;
  background: rgba(104, 117, 247, 0.14);
}

.c-hero__blob--2 {
  bottom: 18%;
  right: 20%;
  width: 320px;
  height: 320px;
  background: rgba(104, 117, 247, 0.08);
}

.c-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(640px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.c-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
}

.c-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.c-hero__pill-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #9a9aaa;
}

.c-hero__title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-hero__title-line {
  display: block;
  background: linear-gradient(160deg, #f8f8fc 0%, #d4d0ff 42%, #9b94f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-hero__title-rotate {
  display: block;
  color: var(--cdb-primary, #6875F7);
  -webkit-text-fill-color: var(--cdb-primary, #6875F7);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.c-hero__title-rotate.is-swapping {
  opacity: 0;
  transform: translateY(-8px);
}

.c-hero__lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: #8b8b9a;
  margin-bottom: 32px;
  max-width: 480px;
}

.c-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 640px) {
  .c-hero {
    padding: 64px 0 80px;
  }

  .c-hero__blob--1 {
    width: 240px;
    height: 240px;
  }

  .c-hero__blob--2 {
    width: 200px;
    height: 200px;
  }
}
