/* Jobfaro sending-domain — minimal one-page styles */
:root {
  --bg: #ffffff;
  --ink: #0f1b2d;
  --ink-soft: #48566b;
  --brand: #1f5eff;
  --brand-dark: #1745c4;
  --border: #e4e9f2;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 50% -8%, rgba(31, 94, 255, 0.08), transparent),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 26px; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 28px;
}
.brand .logo {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), #4f83ff);
  color: #fff; border-radius: 11px; font-size: 22px;
}
h1 {
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 620px;
  font-weight: 800;
}
p.lead {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 32px;
}
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 10px;
  border: 1px solid var(--brand);
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--brand-dark); text-decoration: none; transform: translateY(-1px); }

footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}
footer .addr { font-style: normal; margin-bottom: 6px; }
footer a { color: var(--ink-soft); text-decoration: underline; }
