:root {
  --bg: #0b1220;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #162235;
  --muted: #5e6b82;
  --line: #dbe4f0;
  --candidate: #2563eb;
  --candidate-dark: #1d4ed8;
  --employer: #0f766e;
  --employer-dark: #115e59;
  --accent: #0f172a;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --container: 1180px;
  --hero-max: 860px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 200;
  background: #fff;
  color: #111827;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.8);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.brand-mark-candidate {
  background: linear-gradient(135deg, var(--candidate), #60a5fa);
}

.brand-mark-employer {
  background: linear-gradient(135deg, var(--employer), #34d399);
}

.brand-text {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: .8rem
}

.site-nav a:hover,
.footer-nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.nav-cta {
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff !important;
}

.nav-cta-candidate {
  background: var(--candidate);
}

.nav-cta-employer {
  background: var(--employer);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  margin: 5px 0;
}

.hero-bg {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.62) 0%, rgba(11, 18, 32, 0.62) 100%);
}

.hero-bg-candidate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 34%);
}

.hero-bg-employer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 84px 0 72px;
}

.hero-copy {
  max-width: var(--hero-max);
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow-candidate {
  color: #bfdbfe;
}

.eyebrow-employer {
  color: #a7f3d0;
}

.hero-copy h1 {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-candidate {
  color: #fff;
  background: var(--candidate);
}

.btn-candidate:hover {
  background: var(--candidate-dark);
}

.btn-employer {
  color: #fff;
  background: var(--employer);
}

.btn-employer:hover {
  background: var(--employer-dark);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-dark {
  color: #fff;
  background: var(--accent);
}

.btn-block {
  width: 100%;
}

.section {
  padding: 82px 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-head {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head h2,
.split-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p,
.split-copy p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-grid,
.pricing-grid,
.landing-links {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid,
.landing-links {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card,
.landing-card,
.funnel-card,
.lead-form,
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.landing-card,
.funnel-card {
  padding: 24px;
}

.card h3,
.landing-card h3,
.funnel-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p,
.landing-card p,
.funnel-card p {
  margin: 0;
  color: var(--muted);
}

.icon-chip {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 800;
}

.icon-chip-candidate {
  background: #dbeafe;
  color: var(--candidate-dark);
}

.icon-chip-employer {
  background: #ccfbf1;
  color: var(--employer-dark);
}

.price-card {
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.featured {
  transform: translateY(-4px);
}

.featured-candidate {
  border-color: var(--candidate);
}

.featured-employer {
  border-color: var(--employer);
}

.badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.badge-candidate {
  background: #dbeafe;
  color: var(--candidate-dark);
}

.badge-employer {
  background: #ccfbf1;
  color: var(--employer-dark);
}

.tier {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-card h3 {
  margin: 8px 0 8px;
  font-size: 2.2rem;
}

.tier-sub {
  margin: 0 0 18px;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: #324256;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.funnel-card ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.funnel-card li + li {
  margin-top: 10px;
}

.text-link {
  font-weight: 800;
}

.text-link-candidate {
  color: var(--candidate-dark);
}

.text-link-employer {
  color: var(--employer-dark);
}

.lead-section {
  background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.04), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.lead-form {
  padding: 24px;
  box-shadow: var(--shadow);
}

.field-row {
  display: flex;
  gap: 14px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.field label {
  margin-bottom: 8px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
}

.focus-candidate input:focus,
.focus-candidate select:focus,
.focus-candidate textarea:focus {
  border-color: var(--candidate);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.focus-employer input:focus,
.focus-employer select:focus,
.focus-employer textarea:focus {
  border-color: var(--employer);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: auto;
  margin-top: 5px;
}

.form-message {
  margin: 12px 0 0;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 18px;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

details p {
  margin: 0 0 18px;
  color: var(--muted);
}

.site-footer {
  background: var(--bg);
  color: #e5edf8;
  padding: 44px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.footer-copy {
  margin: 14px 0 0;
  color: #a9b6cb;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-nav a {
  color: #dbe4f0;
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .landing-links,
  .two-col,
  .lead-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    right: 16px;
    top: 76px;
    width: min(320px, calc(100% - 32px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .field-row,
  .footer-grid {
    flex-direction: column;
  }

  .hero-bg {
    min-height: 64vh;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}