.brand-hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  align-items: center;
  margin: 22px 0 26px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #111111 0%, #1e1e1e 50%, #2b2b2b 100%);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 35%);
  pointer-events: none;
}

.brand-hero.compact {
  margin-bottom: 18px;
}

.brand-kicker {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 10px;
}

.brand-hero-copy h1 {
  margin: 0 0 10px;
  font-size: 2.2rem;
  line-height: 1.05;
}

.brand-lead {
  margin: 0;
  max-width: 48ch;
  color: #f3f4f6;
  font-size: 1.04rem;
}

.brand-hero-logo-wrap {
  text-align: center;
}

.brand-hero-logo {
  max-width: 100%;
  max-height: 220px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.3));
}

.brand-hero-logo.compact {
  max-height: 150px;
}

.branded-login-card {
  border: 1px solid #ece3c2;
  background: #fffef8;
}

.branded-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.google-login-btn {
  background: #facc15;
  color: #111111 !important;
  border: 1px solid #eab308;
}

.google-login-btn:hover {
  background: #eab308;
  color: #111111 !important;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #6b7280;
  font-weight: 700;
}

.or-divider::before,
.or-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e5e7eb;
}

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

  .brand-hero-copy h1 {
    font-size: 1.8rem;
  }
}
