/* ============================================================
   URecruit HQ — Ads Landing Site
   Static CSS — no JavaScript, no external fonts, no analytics
   System font stack only.
   ============================================================ */

:root {
  --navy:      #0B1F3B;
  --navy-mid:  #132d54;
  --gold:      #D4AF37;
  --gold-dark: #b8941f;
  --white:     #FFFFFF;
  --charcoal:  #111827;
  --muted-bg:  #F3F4F6;
  --border:    #E5E7EB;
  --text-mid:  #374151;
  --text-soft: #6B7280;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          Helvetica, Arial, sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--charcoal); background: var(--white); line-height: 1.6; }
a { color: inherit; }
ul { list-style: none; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.nav__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 2px;
  flex: 1;
  padding: 0;
}
.nav__links li { list-style: none; }
.nav__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--white); }
.nav__links a[aria-current="page"] { color: var(--gold); }
.nav__cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--gold-dark); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 80px;
}
.hero__badge {
  display: inline-block;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  max-width: 660px;
}
.hero__headline mark {
  background: none;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.72;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  line-height: 1;
}
.btn--gold  { background: var(--gold);  color: var(--navy);  }
.btn--gold:hover  { background: var(--gold-dark); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); }
.btn--sm { font-size: 0.875rem; padding: 10px 20px; }

/* ── Sections ─────────────────────────────────────────────── */
.section       { padding: 72px 0; }
.section--gray { background: var(--muted-bg); }
.section--navy { background: var(--navy); color: var(--white); }

.section__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section--navy .section__eyebrow { color: var(--gold); }

.section__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section__sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.72;
}
.section--navy .section__sub { color: rgba(255,255,255,.7); }
.section--navy .section__title { color: var(--white); }

.section__cta { margin-top: 36px; }

/* ── Page Header (inner pages) ────────────────────────────── */
.page-header { background: var(--navy); color: var(--white); padding: 60px 0; }
.page-header__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.page-header__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.page-header__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Card Grid ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
}
.section--gray .card { background: var(--white); }
.card__icon { font-size: 1.6rem; margin-bottom: 14px; line-height: 1; }
.card__title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card__body  { font-size: 0.875rem; color: var(--text-soft); line-height: 1.65; }

/* ── Two-column ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

/* ── Feature list ─────────────────────────────────────────── */
.feature-list { padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.section--navy .feature-list li { color: rgba(255,255,255,.82); }

/* ── Notice / callout ─────────────────────────────────────── */
.notice {
  background: rgba(212,175,55,.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 28px 0;
}
.notice p { font-size: 0.9rem; line-height: 1.65; color: var(--text-mid); margin: 0; }
.notice p + p { margin-top: 10px; }
.notice strong { color: var(--navy); }

/* ── Steps ────────────────────────────────────────────────── */
.step-list { padding: 0; counter-reset: steps; }
.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.step-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.step__title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step__body  { font-size: 0.875rem; color: var(--text-soft); line-height: 1.62; }

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-banner__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Prose (legal pages) ──────────────────────────────────── */
.prose { max-width: 680px; }
.prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 10px;
  line-height: 1.3;
}
.prose p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.prose ul { padding-left: 22px; margin-bottom: 16px; list-style: disc; }
.prose ul li { font-size: 0.925rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 6px; }
.prose a { color: var(--navy); text-decoration: underline; }
.prose .updated { font-size: 0.825rem; color: var(--text-soft); margin-bottom: 32px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 40px 0;
  font-size: 0.875rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__brand { font-weight: 700; color: var(--white); font-size: 1rem; }
.footer__brand span { color: var(--gold); }
.footer__tagline { font-size: 0.78rem; color: rgba(255,255,255,.45); margin-top: 3px; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer__links a:hover { color: var(--white); }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.38); }

/* ── Divider ──────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__inner  { justify-content: space-between; }
  .two-col     { grid-template-columns: 1fr; gap: 32px; }
  .hero        { padding: 56px 0; }
  .section     { padding: 52px 0; }
  .cta-banner  { padding: 52px 0; }
  .page-header { padding: 44px 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
