/* Recruiter Tools — the page around the dashboard.
   The dashboard brings its own stylesheet (dashboard.css); this is only the
   hero, the privacy line and the footer. Dark to match. No external requests. */

:root {
  --bg: #0a0a0b;
  --surface: #141417;
  --border: #26262c;
  --text: #ececf1;
  --muted: #8f8f9b;
  --accent: #34d27f;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    Ubuntu,
    Cantarell,
    'Helvetica Neue',
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

main,
.site-header,
footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--accent);
}

h1 {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 2.5rem 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
}

.mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  display: block;
}

.subline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0.9rem auto 1.5rem;
}

.privacy-line {
  max-width: 42rem;
  margin: 0 auto 2rem;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(52, 210, 127, 0.07);
  border: 1px solid rgba(52, 210, 127, 0.25);
  border-radius: 999px;
}

.privacy-line .offline {
  color: var(--muted);
}

.card {
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card ul {
  padding-left: 1.15rem;
}

.card li {
  margin-bottom: 0.4rem;
}

.columns {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

footer p {
  margin-bottom: 0.4rem;
}
