.public-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(18, 103, 255, 0.94), rgba(23, 20, 29, 0.84)),
    url("/static/img/corpece-logo.png") right 8% center / 360px auto no-repeat,
    #1267ff;
  color: #fff;
}

.public-hero-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.public-hero .eyebrow {
  color: #dfeaff;
}

.public-hero h2 {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.05;
}

.public-hero p {
  max-width: 680px;
  margin: 0;
  color: #eef4ff;
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.captcha-placeholder {
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--muted);
  padding: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .public-hero {
    min-height: 420px;
    background:
      linear-gradient(90deg, rgba(18, 103, 255, 0.95), rgba(23, 20, 29, 0.88)),
      #1267ff;
  }

  .public-hero h2 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }
}
