.hero {
  position: relative;
  padding: 3.6rem 0 3rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-aura {
  position: absolute;
  inset: -25% -15% auto auto;
  z-index: -1;
  width: min(46rem, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(22, 199, 217, 0.18),
      rgba(2, 132, 255, 0.06) 45%,
      transparent 70%
    );
  filter: blur(18px);
  opacity: 0.95;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 44rem;
}

.hero h1 {
  max-width: 11ch;
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.15rem, 8.5vw, 3.7rem);
  line-height: 0.98;
  font-weight: 720;
}

.hero h1 span {
  display: block;
  color: var(--brand-400);
}

.hero-description {
  max-width: 40rem;
  margin: 0;
  color: var(--text-2);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.check-card {
  position: relative;
  padding: 1rem;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      155deg,
      color-mix(in srgb, var(--brand-500) 5%, var(--surface-1)),
      var(--surface-1) 38%
    );
  box-shadow: var(--shadow-md);
}

.check-card::before {
  content: "";
  position: absolute;
  inset: 0.1rem auto auto 1rem;
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-400), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.form-row {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.trust-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  color: var(--text-3);
  font-size: 0.76rem;
}

.trust-row span {
  white-space: nowrap;
}

.recent-section {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.8rem, 7vw, 2.7rem);
  line-height: 1;
}

.empty-state {
  padding: clamp(1.6rem, 5vw, 2.5rem) 1rem;
  text-align: center;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 50% 0%,
      color-mix(in srgb, var(--brand-500) 7%, transparent),
      transparent 55%
    ),
    color-mix(in srgb, var(--surface-1) 72%, transparent);
}

.empty-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-400) 7%, var(--surface-2));
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--brand-400) 16%, var(--border)),
    0 10px 28px rgba(22, 199, 217, 0.08);
}

.empty-icon img {
  width: 1.85rem;
  height: 1.85rem;
}

.empty-state h3 {
  margin: 0;
}

.empty-state p {
  max-width: 32rem;
  margin: 0.5rem auto 0;
  color: var(--text-3);
}

@media (max-width: 33.99rem) {
  .hero {
    padding-top: 2.8rem;
  }

  .hero-layout {
    gap: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.85rem);
  }

  .check-card {
    padding: 0.9rem;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading .text-button {
    flex: 0 0 auto;
  }
}

@media (min-width: 44rem) {
  .form-row {
    grid-template-columns: minmax(11rem, 0.55fr) minmax(12rem, 0.45fr);
    align-items: end;
  }
}

@media (min-width: 62rem) {
  .hero {
    padding: 5.6rem 0 4.8rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.78fr);
    align-items: center;
    gap: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 4.8vw, 4.45rem);
  }

  .check-card {
    padding: 1.25rem;
  }

  .recent-section {
    padding-top: 3.6rem;
  }
}
