:root{
  --bg:#f5f8fc;
  --surface:#ffffff;
  --surface-2:#eef4fb;
  --text:#111827;
  --muted:#64748b;
  --line:#dbe5f0;
  --primary:#1d4ed8;
  --primary-2:#0ea5e9;
  --primary-soft:#e8f1ff;
  --primary-dark:#163fb2;
  --shadow:0 16px 40px rgba(15, 23, 42, 0.08);
  --radius:22px;
  --radius-sm:14px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:#f7fbff;
}

a{color:inherit;text-decoration:none}
button,input{font:inherit}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.hidden{display:none !important}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(219,229,240,0.8);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
}

.brand__mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  font-weight:900;
  box-shadow:0 10px 24px rgba(29,78,216,0.18);
}

.brand__mark--sm{
  width:30px;
  height:30px;
  border-radius:10px;
  font-size:14px;
}

.brand__text{
  font-size:1.12rem;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav-links a{
  padding:10px 12px;
  border-radius:10px;
  color:#5b6778;
  font-weight:600;
}

.nav-links a.active,
.nav-links a:hover{
  color:var(--text);
  background:#f2f7fd;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  border:none;
  cursor:pointer;
  border-radius:14px;
  padding:12px 18px;
  font-weight:700;
  transition:0.2s transform,0.2s opacity,0.2s background,0.2s color,0.2s border-color,0.2s box-shadow;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn:hover{transform:translateY(-1px)}

.btn--primary{
  color:#fff;
  background:linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow:0 10px 24px rgba(29,78,216,0.18);
}

.btn--primary:hover{
  box-shadow:0 14px 28px rgba(29,78,216,0.22);
}

.btn--ghost{
  background:#fff;
  color:var(--primary);
  border:1px solid #c8daf9;
}

.btn--ghost:hover{
  background:#f8fbff;
}

.btn--light{
  background:#ffffff;
  color:#1d4ed8;
  border:1px solid rgba(255,255,255,0.9);
  min-height:52px;
  padding:14px 24px;
  border-radius:16px;
  box-shadow:0 14px 30px rgba(12, 25, 60, 0.18);
}

.btn--light:hover{
  background:#f8fbff;
}

.btn--outline-light{
  background:rgba(255,255,255,0.06);
  color:#ffffff;
  border:1px solid rgba(255,255,255,0.28);
  backdrop-filter:blur(10px);
  min-height:52px;
  padding:14px 24px;
  border-radius:16px;
}

.btn--outline-light:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.38);
}

.btn--full{width:100%}

.burger{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  padding:10px;
  cursor:pointer;
}

.burger span{
  display:block;
  height:2px;
  background:#24364f;
  margin:5px 0;
  border-radius:999px;
}

.mobile-menu{
  display:none;
  padding:0 16px 16px;
  border-bottom:1px solid var(--line);
  background:#fff;
}

.mobile-menu a,
.mobile-menu button{
  width:100%;
  margin-top:10px;
}

.hero{
  padding:72px 0 52px;
}

.hero-simple{
  display:flex;
  justify-content:center;
}

.hero-copy{
  max-width:820px;
}

.hero-copy--center{
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:#5d6d82;
  font-weight:700;
  margin-bottom:22px;
  font-size:0.95rem;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(2.8rem, 5vw, 4.8rem);
  line-height:1.02;
  letter-spacing:-0.06em;
}

.hero-text{
  margin:0 auto 26px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
  max-width:720px;
}

.hero-search{
  display:flex;
  gap:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:6px;
  max-width:640px;
  margin:0 auto 18px;
}

.hero-search input{
  flex:1;
  min-width:0;
  border:none;
  outline:none;
  background:transparent;
  padding:16px 16px;
  color:var(--text);
}

.hero-search .btn{
  min-width:132px;
  border-radius:14px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.hero-actions--center{
  justify-content:center;
}

.quick-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.quick-links--center{
  justify-content:center;
}

.quick-links a{
  padding:10px 14px;
  border-radius:999px;
  background:#f2f6fb;
  border:1px solid var(--line);
  color:#506682;
  font-weight:700;
  font-size:0.95rem;
}

.section{
  padding:64px 0;
}

.section + .section{
  border-top:1px solid rgba(219,229,240,0.8);
}

.section-head{
  margin-bottom:28px;
}

.section-head--wide{
  max-width:920px;
}

.section-kicker{
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.12em;
  color:#9aa8bc;
  margin-bottom:12px;
}

.section-head h2{
  margin:0 0 8px;
  font-size:clamp(2rem, 4vw, 3rem);
  letter-spacing:-0.05em;
  line-height:1.1;
}

.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.account-strip{
  padding-top:0;
}

.account-strip__box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:0 12px 30px rgba(15, 23, 42, 0.05);
}

.account-strip__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.card-kicker{
  color:var(--muted);
  font-weight:700;
  margin-bottom:6px;
  font-size:0.95rem;
}

.account-strip__top h2{
  margin:0;
  font-size:1.8rem;
  letter-spacing:-0.03em;
}

.status-pill{
  padding:8px 12px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary);
  font-weight:800;
  white-space:nowrap;
}

.card-text{
  color:var(--muted);
  line-height:1.8;
  margin:14px 0 20px;
  max-width:760px;
}

.check-list{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.check-list--inline{
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.check-item{
  display:flex;
  gap:12px;
  line-height:1.6;
  color:#39506c;
}

.check-item::before{
  content:"";
  flex-shrink:0;
  width:10px;
  height:10px;
  margin-top:8px;
  border-radius:999px;
  background:#1d4ed8;
}

.profile-box{
  background:#f8fbff;
  border:1px solid #dce8f7;
  border-radius:18px;
  padding:16px;
  margin-bottom:16px;
}

.profile-box__title{
  font-weight:800;
  margin-bottom:6px;
}

.profile-box__text{
  color:var(--muted);
  line-height:1.6;
}

.card-actions{
  display:grid;
  gap:12px;
}

.card-actions--inline{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.feature-grid--plain{
  align-items:start;
}

.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}

.feature-card--plain{
  border:none;
  background:transparent;
  padding:0;
  box-shadow:none;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:1.35rem;
  letter-spacing:-0.03em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.jobs-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.job-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  height:100%;
  box-shadow:0 10px 24px rgba(15, 23, 42, 0.04);
}

.job-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.job-card__top h3{
  margin:0 0 6px;
  font-size:1.2rem;
  line-height:1.3;
  letter-spacing:-0.02em;
}

.job-card__company{
  margin:0;
  color:#1f2937;
  font-weight:700;
}

.job-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.job-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#f3f7fd;
  border:1px solid #dbe5f0;
  color:#4b5f7a;
  font-size:0.92rem;
  font-weight:700;
}

.job-card__desc{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.job-card .card-actions{
  margin-top:auto;
}

.job-card .btn{
  width:100%;
}

.how-wrap{
  max-width:900px;
}

.steps-list{
  display:grid;
  gap:0;
  border-top:1px solid var(--line);
}

.step-row{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:18px;
  align-items:start;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.step-no{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#111827;
  color:#fff;
  font-weight:800;
  font-size:0.92rem;
  margin-top:4px;
}

.step-row__content h3{
  margin:0 0 8px;
  font-size:1.35rem;
  letter-spacing:-0.03em;
}

.step-row__content p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px;
  border-radius:24px;
  background:linear-gradient(180deg, #ffffff, #f3f8ff);
  border:1px solid var(--line);
}

.cta-box h2{
  margin:0 0 8px;
  letter-spacing:-0.03em;
}

.cta-box p{
  margin:0;
  color:var(--muted);
}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.employers-section{
  padding:24px 0 0;
}

.employers-box{
  max-width:1120px;
  margin:0 auto;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 28%),
    radial-gradient(circle at right center, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(135deg, #2348a7 0%, #2f63e0 48%, #4b8ef7 100%);
  border-radius:38px;
  padding:72px 56px 62px;
  color:#ffffff;
  text-align:center;
  box-shadow:
    0 24px 60px rgba(29,78,216,0.20),
    inset 0 1px 0 rgba(255,255,255,0.14);
  position:relative;
  overflow:hidden;
}

.employers-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 20px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(10px);
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.08em;
  margin-bottom:24px;
}

.employers-box h2{
  max-width:860px;
  margin:0 auto 18px;
  font-size:clamp(2.1rem, 4vw, 3.6rem);
  line-height:1.12;
  letter-spacing:-0.05em;
  font-weight:850;
}

.employers-text{
  max-width:760px;
  margin:0 auto 30px;
  font-size:1.08rem;
  line-height:1.85;
  color:rgba(255,255,255,0.90);
}

.employers-points{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  max-width:900px;
  margin:0 auto 34px;
}

.employers-point{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  color:#ffffff;
  font-weight:700;
  font-size:0.95rem;
}

.employers-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* EMPLOYER PAGE */
.hero__wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:28px;
  align-items:center;
}

.hero__wrap--simple{
  grid-template-columns:1fr;
  max-width:940px;
}

.hero-copy-block{
  max-width:760px;
  margin:0 auto;
}

.lead{
  margin:0;
  max-width:760px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0 18px;
}

.mini-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.mini-chip{
  padding:10px 14px;
  border-radius:999px;
  background:#f2f6fb;
  border:1px solid var(--line);
  color:#506682;
  font-weight:700;
  font-size:0.95rem;
}

.section--line-top{
  border-top:1px solid rgba(219,229,240,0.8);
}

.narrow-section{
  max-width:980px;
}

.step-no--plain{
  width:auto;
  height:auto;
  background:transparent;
  color:#94a3b8;
  border-radius:0;
  font-size:0.95rem;
  margin-top:2px;
}

.employer-steps-list{
  border-top:1px solid var(--line);
}

.section--soft{
  background:#f3f5f7;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.feature-grid-employer{
  grid-template-columns:repeat(2, 1fr);
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
  box-shadow:none;
}

.card h3{
  margin:0 0 10px;
  font-size:1.35rem;
  letter-spacing:-0.03em;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.card--plain-number{
  border-radius:18px;
  box-shadow:none;
  padding:26px;
}

.card-number{
  font-size:0.95rem;
  font-weight:800;
  color:#a08b76;
  margin-bottom:14px;
}

.comparison{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.comparison--soft{
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.compare-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}

.compare-card h3{
  margin:0 0 14px;
  font-size:1.3rem;
  letter-spacing:-0.03em;
}

.compare-card ul{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.9;
}

.compare-card--blue{
  background:linear-gradient(180deg, #f4f8ff, #eaf2ff);
  border-color:#cfe0ff;
}

.compare-card--blue h3,
.compare-card--blue ul{
  color:#111827;
}

.cta--brand{
  padding-top:0;
}

.cta-box--brand{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 28%),
    radial-gradient(circle at right center, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(135deg, #2348a7 0%, #2f63e0 48%, #4b8ef7 100%);
  border:none;
  border-radius:38px;
  color:#fff;
  justify-content:center;
  text-align:center;
  padding:84px 24px;
  box-shadow:
    0 24px 60px rgba(29,78,216,0.20),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.cta-center{
  max-width:760px;
  margin:0 auto;
}

.cta-box--brand h2{
  margin:0 0 14px;
  font-size:clamp(2.2rem, 4vw, 4rem);
  line-height:1.2;
  letter-spacing:-0.05em;
}

.cta-box--brand p{
  color:rgba(255,255,255,0.90);
  margin:0 0 28px;
}

.section-kicker--brand{
  color:rgba(255,255,255,0.72);
  margin-bottom:20px;
}

.cta-actions--center{
  justify-content:center;
}

.site-footer{
  padding:22px 0 28px;
}

.site-footer--brand{
  background:#03132d;
  color:#9fb1cc;
  margin-top:0;
}

.site-footer--full{
  background:#03132d;
  color:#ffffff;
  margin-top:0;
  padding:0;
}

.footer-full{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:60px;
  padding:58px 0 38px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:1.15rem;
}

.footer-brand-block{
  max-width:430px;
}

.footer-brand-text{
  margin:22px 0 0;
  color:#b6c4da;
  line-height:1.95;
  font-size:1.05rem;
}

.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:42px;
}

.footer-column h3{
  margin:2px 0 18px;
  font-size:1.12rem;
  color:#ffffff;
  letter-spacing:-0.02em;
}

.footer-column a,
.footer-link-btn{
  display:block;
  margin-bottom:13px;
  color:#b6c4da;
  background:none;
  border:none;
  padding:0;
  text-align:left;
  cursor:pointer;
  line-height:1.65;
  font-size:0.98rem;
  transition:0.2s ease;
}

.footer-column a:hover,
.footer-link-btn:hover{
  color:#ffffff;
}

.footer-bottom-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:24px 0 30px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#9fb1cc;
  font-size:0.96rem;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.footer-bottom-links a{
  color:#9fb1cc;
  transition:0.2s ease;
}

.footer-bottom-links a:hover{
  color:#ffffff;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:#5b6f8b;
}

.footer-inner--brand{
  border-top:none;
  padding:18px 0 26px;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.footer-links a{
  color:inherit;
}

.footer-links a:hover{
  color:#ffffff;
}

/* MODAL */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:60;
}

.modal.show{
  display:block;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,0.45);
  backdrop-filter:blur(4px);
}

.modal-panel{
  position:relative;
  width:min(540px, calc(100% - 24px));
  margin:66px auto 0;
  background:#fff;
  border-radius:24px;
  padding:0;
  box-shadow:0 32px 80px rgba(15,23,42,0.24);
}

.auth-panel{
  overflow:hidden;
}

.auth-shell{
  padding:32px 32px 28px;
}

.modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.auth-head{
  margin-bottom:18px;
}

.modal-head h2{
  margin:0 0 8px;
  font-size:1.9rem;
  line-height:1.1;
  letter-spacing:-0.03em;
}

.modal-head p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.icon-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid #d7e1ee;
  background:#fff;
  cursor:pointer;
  color:#7a8aa0;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
  flex-shrink:0;
}

.auth-close{
  margin-top:2px;
}

.tab-row{
  display:flex;
  gap:10px;
  margin-bottom:16px;
}

.auth-tabs{
  background:#edf2fb;
  border-radius:14px;
  padding:4px;
  margin-bottom:18px;
}

.tab{
  flex:1;
  border:1px solid transparent;
  background:transparent;
  color:#5d6f89;
  border-radius:12px;
  padding:12px 14px;
  cursor:pointer;
  font-weight:800;
  transition:0.2s ease;
}

.tab.active{
  background:linear-gradient(90deg, #2f63e0, #2f63e0);
  color:#ffffff;
  box-shadow:0 8px 18px rgba(47,99,224,0.24);
}

.social-auth{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.social-btn{
  width:100%;
  min-height:46px;
  border:1px solid #d7e1ee;
  background:#ffffff;
  border-radius:14px;
  padding:12px 16px;
  text-align:center;
  font-weight:700;
  color:#172033;
  cursor:pointer;
  transition:0.2s ease;
}

.social-btn:hover{
  border-color:#bfd4fb;
  background:#fbfdff;
}

.auth-divider{
  display:flex;
  align-items:center;
  gap:14px;
  color:#94a3b8;
  font-size:0.92rem;
  margin:16px 0 20px;
}

.auth-divider::before,
.auth-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:#dbe5f0;
}

.auth-divider span{
  white-space:nowrap;
}

.auth-form{
  display:grid;
  gap:14px;
}

.auth-form--premium{
  gap:16px;
}

.field-group{
  display:grid;
  gap:8px;
}

.field-group label{
  font-weight:700;
  color:#1f2937;
}

.field-group input{
  width:100%;
  border:1px solid #d7e1ee;
  border-radius:13px;
  padding:15px 15px;
  outline:none;
  background:#ffffff;
  color:#111827;
  min-height:48px;
}

.field-group input::placeholder{
  color:#94a3b8;
}

.field-group input:focus{
  border-color:#9dc2ff;
  box-shadow:0 0 0 4px rgba(59,130,246,0.12);
}

.password-wrap{
  position:relative;
}

.password-wrap input{
  padding-right:70px;
}

.password-toggle{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
  color:#64748b;
  padding:0;
  line-height:1;
}

.password-toggle:hover{
  color:var(--primary);
}

.forgot-password-row{
  display:flex;
  justify-content:flex-end;
  margin-top:-2px;
}

.link-btn{
  border:none;
  background:transparent;
  color:#2563eb;
  padding:0;
  cursor:pointer;
  font-size:0.95rem;
  font-weight:500;
}

.link-btn:hover{
  text-decoration:underline;
}

.auth-terms{
  margin:-2px 0 0;
  font-size:0.9rem;
  line-height:1.6;
  color:#94a3b8;
  text-align:center;
}

.auth-terms a{
  color:#2563eb;
}

.auth-submit{
  min-height:52px;
  border-radius:13px;
  font-size:1.05rem;
  font-weight:800;
  margin-top:2px;
}

.auth-note{
  margin-top:16px;
  color:var(--muted);
  line-height:1.6;
}

.auth-note--center{
  text-align:center;
  font-size:0.98rem;
}

.inline-switch-btn{
  border:none;
  background:transparent;
  color:#2563eb;
  cursor:pointer;
  padding:0;
  font-weight:700;
  font-size:inherit;
}

.inline-switch-btn:hover{
  text-decoration:underline;
}

.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%) translateY(10px);
  background:#111827;
  color:#fff;
  padding:12px 16px;
  border-radius:14px;
  opacity:0;
  pointer-events:none;
  transition:0.2s ease;
  z-index:80;
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* EMPLOYER AUTH */
.employer-auth-panel{
  width:min(420px, calc(100% - 24px));
  border-radius:22px;
  overflow:hidden;
}

.employer-auth-shell{
  padding:22px 22px 24px;
}

.employer-auth-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.employer-auth-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.employer-auth-brand-text{
  font-weight:800;
  font-size:1.05rem;
}

.employer-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 10px;
  border-radius:8px;
  background:#f3f4f6;
  color:#6b7280;
  font-size:0.82rem;
  font-weight:700;
}

.employer-auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-bottom:22px;
  border-bottom:1px solid var(--line);
}

.employer-auth-tab{
  border:none;
  background:transparent;
  padding:14px 10px 12px;
  font-weight:800;
  color:#94a3b8;
  border-bottom:2px solid transparent;
  cursor:pointer;
}

.employer-auth-tab.active{
  color:#111827;
  border-bottom-color:#111827;
}

.employer-auth-header h2{
  margin:0 0 8px;
  font-size:1.25rem;
  letter-spacing:-0.03em;
}

.employer-auth-header p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.6;
}

.employer-auth-note-box{
  margin-bottom:16px;
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#f8fafc;
  color:#64748b;
  line-height:1.6;
}

.employer-auth-note-box strong{
  color:#374151;
}

.about-hero{
  padding:56px 0 22px;
}

.about-hero__inner{
  max-width:920px;
}

.about-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--line);
  color:#47617f;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.08em;
  margin-bottom:18px;
}

.about-hero h1{
  margin:0 0 16px;
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1.02;
  letter-spacing:-0.05em;
  max-width:900px;
}

.about-hero p{
  margin:0;
  max-width:760px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.about-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.about-card--wide{
  grid-column:1 / -1;
}

.about-card h2,
.about-card h3{
  margin:0 0 10px;
  letter-spacing:-0.02em;
}

.about-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.about-highlight{
  background:linear-gradient(180deg, #ffffff, #f4f8ff);
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
  align-items:start;
}

.about-highlight h2{
  margin:0 0 12px;
  letter-spacing:-0.03em;
}

.about-highlight p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.about-points{
  display:grid;
  gap:14px;
}

.about-point{
  background:#fff;
  border:1px solid #dce8f7;
  border-radius:18px;
  padding:16px 18px;
  font-weight:700;
  color:#22324a;
}

.contact-hero{
  padding:56px 0 22px;
}

.contact-hero__inner{
  max-width:920px;
}

.contact-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--line);
  color:#47617f;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.08em;
  margin-bottom:18px;
}

.contact-hero h1{
  margin:0 0 16px;
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1.02;
  letter-spacing:-0.05em;
  max-width:900px;
}

.contact-hero p{
  margin:0;
  max-width:760px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.contact-card--primary{
  grid-column:1 / -1;
}

.contact-card--wide{
  grid-column:1 / -1;
}

.contact-card h2{
  margin:0 0 10px;
  letter-spacing:-0.02em;
}

.contact-card p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.8;
}

.contact-list{
  display:grid;
  gap:16px;
}

.contact-item{
  padding:16px 18px;
  background:#f8fbff;
  border:1px solid #dce8f7;
  border-radius:18px;
}

.contact-item__label{
  font-size:0.92rem;
  font-weight:700;
  color:#64748b;
  margin-bottom:6px;
}

.contact-item__value{
  font-weight:800;
  color:#1d4ed8;
  word-break:break-word;
}

.legal-hero{
  padding:56px 0 22px;
}

.legal-hero__inner{
  max-width:920px;
}

.legal-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--line);
  color:#47617f;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.08em;
  margin-bottom:18px;
}

.legal-hero h1{
  margin:0 0 16px;
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1.02;
  letter-spacing:-0.05em;
  max-width:900px;
}

.legal-hero p{
  margin:0;
  max-width:760px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
}

.legal-meta{
  margin-top:14px;
  color:#64748b;
  font-weight:700;
}

.legal-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
  align-items:start;
}

.legal-side{
  position:sticky;
  top:96px;
}

.legal-side__card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
  display:grid;
  gap:12px;
}

.legal-side__title{
  font-weight:800;
  margin-bottom:4px;
}

.legal-side__card a{
  color:#47617f;
  line-height:1.5;
}

.legal-side__card a:hover{
  color:var(--primary);
}

.legal-content{
  display:grid;
  gap:20px;
}

.legal-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.legal-card h2{
  margin:0 0 12px;
  letter-spacing:-0.02em;
}

.legal-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.8;
}

.legal-card p:last-child{
  margin-bottom:0;
}

.legal-list{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.8;
}

.legal-list li{
  margin-bottom:8px;
}

.legal-list a{
  color:var(--primary);
}

.careers-cta{
  background:linear-gradient(120deg,#0ea5e9 0%,#1d4ed8 45%,#111827 100%);
  color:#fff;
  padding:48px 0;
  margin-top:48px;
}
.careers-cta__inner{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  flex-wrap:wrap;
}
.careers-cta h2{color:#fff;margin:6px 0 8px}
.careers-cta .hero-text{color:#e2e8f0;max-width:620px;margin:0}
.careers-cta__actions{display:flex;gap:12px;flex-wrap:wrap}
.careers-cta .btn--ghost{
  color:#fff;
  border-color:rgba(255,255,255,0.6);
  background:rgba(255,255,255,0.08);
}
.careers-cta .btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,0.14)}

@media (max-width: 980px){
  .feature-grid,
  .jobs-grid,
  .footer-full,
  .footer-links-grid,
  .about-grid,
  .about-highlight,
  .contact-grid,
  .legal-layout,
  .grid-2,
  .feature-grid-employer,
  .comparison,
  .comparison--soft,
  .hero__wrap{
    grid-template-columns:1fr;
  }

  .check-list--inline{
    grid-template-columns:1fr;
  }

  .nav-links,
  .nav-actions{
    display:none;
  }

  .burger{
    display:block;
  }

  .mobile-menu.show{
    display:grid;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-full{
    gap:36px;
  }

  .about-card--wide,
  .contact-card--primary,
  .contact-card--wide{
    grid-column:auto;
  }

  .legal-side{
    position:static;
  }
}

@media (max-width: 640px){
  .hero{
    padding:42px 0 36px;
  }

  .hero h1{
    font-size:2.45rem;
  }

  .hero-search{
    flex-direction:column;
    padding:10px;
  }

  .hero-search .btn{
    width:100%;
  }

  .hero-actions,
  .hero__actions,
  .cta-actions,
  .employers-actions,
  .card-actions--inline{
    width:100%;
    flex-direction:column;
  }

  .hero-actions .btn,
  .hero__actions .btn,
  .cta-actions .btn,
  .employers-actions .btn,
  .card-actions--inline .btn{
    width:100%;
  }

  .section{
    padding:48px 0;
  }

  .account-strip__box,
  .job-card,
  .cta-box,
  .card,
  .compare-card,
  .about-card,
  .about-highlight,
  .contact-card,
  .legal-card,
  .legal-side__card{
    padding:22px;
  }

  .account-strip__top{
    flex-direction:column;
    align-items:flex-start;
  }

  .step-row{
    grid-template-columns:1fr;
    gap:12px;
  }

  .step-no{
    margin-top:0;
  }

  .modal-panel{
    width:min(100% - 18px, 540px);
    margin-top:18px;
    border-radius:24px;
  }

  .auth-shell{
    padding:24px 18px 22px;
  }

  .modal-head h2{
    font-size:1.8rem;
  }

  .footer-bottom-bar,
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .employers-box{
    padding:46px 22px 42px;
    border-radius:28px;
  }

  .employers-box h2{
    font-size:2.25rem;
  }

  .employers-text{
    font-size:1rem;
  }

  .footer-links-grid{
    gap:24px;
  }

  .footer-links{
    gap:14px;
  }

  .about-hero,
  .contact-hero,
  .legal-hero{
    padding-top:30px;
  }

  .about-hero h1,
  .contact-hero h1,
  .legal-hero h1,
  .cta-box--brand h2{
    font-size:2.3rem;
  }

  .cta-box--brand{
    padding:46px 22px 42px;
    border-radius:28px;
  }

  .employer-auth-panel{
    width:min(100% - 18px, 420px);
  }

  .employer-auth-shell{
    padding:18px 16px 20px;
  }
}
