.page-home .page-shell {
  gap: 1rem;
  padding-top: 0.9rem;
}

.home-hero {
  display: grid;
  gap: 0.85rem;
}

.home-hero__content {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 390px);
  align-items: stretch;
}

.home-hero__copy,
.hero-form-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.home-hero__copy {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--hero-panel);
  box-shadow: var(--shadow-md);
}

.home-hero__copy::before,
.home-hero__copy::after {
  display: none;
}

.home-hero__copy::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), transparent 70%);
  opacity: 0.55;
}

.home-hero__copy::after {
  inset: auto -7rem -8rem auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.24), transparent 62%);
  filter: blur(10px);
}

.home-hero__copy > * {
  position: relative;
  z-index: 1;
}

.home-hero__copy .eyebrow {
  color: var(--primary);
}

.home-hero__copy h1 {
  max-width: 17ch;
  margin-top: 0.45rem;
}

.home-hero__lead {
  max-width: 40rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-form-card {
  border: 1px solid var(--border);
  background: var(--surface-glass);
  box-shadow: var(--shadow-sm);
}

.hero-form-card .surface-label,
.hero-form-card h2 {
  margin-bottom: 0.65rem;
}

.hero-proof-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof-grid .metric-card {
  min-height: 0;
}

.feature-card,
.trust-card {
  background: var(--card-gradient);
}

@media (max-width: 960px) {
  .home-hero__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-hero__copy,
  .hero-form-card {
    padding: 1rem;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }
}
