.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 13rem);
}

.hero-copy {
  text-align: right;
  padding: 2rem 0;
}

.hero-kicker {
  margin-bottom: 0.9rem;
  color: var(--brand-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin-bottom: 1rem;
}

.hero-copy h2 {
  margin: 0;
  color: var(--muted);
  font-family: "Assistant", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 36rem;
}

.login {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 249, 241, 0.96));
  border: 1px solid rgba(24, 48, 71, 0.12);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-strong);
  text-align: right;
}

.login h1 {
  font-size: 2rem;
  margin-bottom: 1.4rem;
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
