/* HIREBOT public marketing homepage */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #4f46e5;
  --accent-hover: #4338ca;
  --accent-soft: #eef2ff;
  --border: #e2e8f0;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  --max: 1080px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.lang-select {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.nav-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.hero {
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero .sub {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.hero-trust {
  margin: 1.25rem auto 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 36rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); text-decoration: none; color: #fff; }
.btn-secondary {
  background: var(--surface);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); text-decoration: none; }
section { padding: 3rem 0; }
section h2 {
  text-align: center;
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
}
.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}
.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.feature-item::before {
  content: "✓";
  color: var(--accent);
  margin-inline-end: 0.5rem;
  font-weight: 800;
}
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.pricing-card h2 { color: #fff; text-align: start; margin-bottom: 0.35rem; }
.pricing-card .price {
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  line-height: 1.35;
}
.pricing-card ul {
  margin: 0 0 1rem;
  padding-inline-start: 1.2rem;
  line-height: 1.7;
}
.beta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.beta-form {
  max-width: 640px;
  margin: 0 auto;
}
.beta-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.beta-form input,
.beta-form textarea,
.beta-form select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}
.beta-form textarea { min-height: 100px; resize: vertical; }
.beta-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.beta-errors ul { margin: 0.35rem 0 0; padding-inline-start: 1.2rem; }
.site-footer {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer strong { display: block; color: var(--text); margin-bottom: 0.25rem; }
.legal-footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.35rem 0.5rem; margin-top: 0.75rem; font-size: 0.88rem;
}
.legal-footer-links a { font-weight: 600; text-decoration: none; }
.legal-footer-links a:hover { text-decoration: underline; }
.legal-sep { color: #94a3b8; }
.form-consent {
  font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-top: 1rem;
}
.form-consent a { font-weight: 600; }
.what-happens-next {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  background: var(--accent-soft);
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}
.what-happens-next h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--text);
}
.what-happens-next ol {
  margin: 0;
  padding-inline-start: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.important-note {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.footer-copyright {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: #94a3b8;
}
@media (max-width: 600px) {
  .hero { padding: 2.5rem 0 2rem; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
}
