:root {
  --navy-950: #071525;
  --navy-900: #0b1f33;
  --navy-800: #12304d;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --bone: #f8fafc;
  --white: #ffffff;
  --success: #15803d;
  --shadow: 0 22px 70px rgba(7, 21, 37, .16);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--navy-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

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

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.35rem;
}

button {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange-500);
  color: var(--navy-950);
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 50;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 250, 252, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, .24);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 1.22rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--slate-600);
  font-weight: 700;
  font-size: .95rem;
}

.site-nav a:hover {
  color: var(--blue-600);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--navy-900);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  background: var(--orange-500);
  color: var(--navy-950);
  box-shadow: 0 16px 36px rgba(249, 115, 22, .24);
}

.btn-primary:hover {
  background: #fb8a2d;
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(15, 23, 42, .12);
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
}

.btn-large {
  min-height: 60px;
  padding-inline: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, .17), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bone) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange-500);
}

.hero-lede {
  margin-top: 26px;
  max-width: 690px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 690px;
  color: var(--slate-600);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--slate-600);
  font-weight: 750;
  font-size: .9rem;
}

.hero-assurance span::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

.hero-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(148, 163, 184, .28);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-kicker {
  margin-bottom: 3px;
  color: var(--slate-500);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
}

.panel-top h2 {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.status-pill,
.badge,
.match-score {
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .75rem;
  font-weight: 850;
}

.status-pill {
  background: var(--blue-100);
  color: var(--blue-700);
}

.badge {
  background: rgba(21, 128, 61, .12);
  color: var(--success);
}

.badge.muted {
  background: var(--slate-100);
  color: var(--slate-600);
}

.match-score {
  background: rgba(249, 115, 22, .15);
  color: var(--orange-600);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-row span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-weight: 750;
  font-size: .82rem;
}

.candidate-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.candidate-card.featured {
  border-color: rgba(249, 115, 22, .35);
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.card-header h3 {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.card-header p {
  margin: 3px 0 0;
  color: var(--slate-500);
  font-size: .88rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 0;
}

.card-grid div {
  padding: 12px;
  background: var(--bone);
  border-radius: 14px;
}

.card-grid dt {
  color: var(--slate-500);
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.card-grid dd {
  margin: 2px 0 0;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.trust-strip {
  padding: 26px 0;
  background: var(--navy-900);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.strip-grid div {
  padding: 4px 0;
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.strip-grid span {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.two-col {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 70px;
  align-items: start;
}

.two-col.reverse {
  grid-template-columns: .85fr 1fr;
  align-items: center;
}

.content {
  color: var(--slate-600);
  font-size: 1.12rem;
}

.section-muted {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p {
  color: var(--slate-600);
  font-size: 1.08rem;
  margin-top: 18px;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--bone);
  min-height: 252px;
}

.info-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.info-card p {
  color: var(--slate-600);
  margin-top: 12px;
}

.trade-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trade-cloud span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--navy-800);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.callout {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-xl);
}

.callout p {
  margin-top: 8px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .74);
}

.section-blueprint {
  background:
    linear-gradient(135deg, rgba(219, 234, 254, .8), rgba(255,255,255,.85)),
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(37,99,235,.08) 32px),
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(37,99,235,.08) 32px);
}

.profile-card-demo {
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.tiny {
  color: var(--slate-500);
  font-size: .8rem;
  font-weight: 800;
}

.profile-card-demo h3 {
  font-size: 2rem;
}

.role {
  color: var(--slate-600);
  font-weight: 800;
  margin-top: 4px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.demo-grid div {
  border-radius: 16px;
  padding: 14px;
  background: var(--bone);
}

.demo-grid strong,
.demo-grid span {
  display: block;
}

.demo-grid strong {
  color: var(--slate-500);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.demo-grid span {
  margin-top: 4px;
  font-weight: 850;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--slate-700);
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--success);
  font-weight: 950;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
}

.steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange-600);
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 2.2rem;
}

.steps p {
  color: var(--slate-600);
  margin-top: 12px;
}

.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--blue-100);
}

.employer-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 60px;
  align-items: center;
}

.employer-grid p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  margin-top: 18px;
}

.employer-list {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .06);
}

.employer-list ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .78);
}

.employer-list li + li {
  margin-top: 12px;
}

.intake-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 52px;
  align-items: center;
}

.intake-box {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mini-grid span {
  padding: 12px;
  background: var(--bone);
  border-radius: 12px;
  color: var(--slate-700);
  font-weight: 800;
  font-size: .9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

details p {
  color: var(--slate-600);
  margin: 14px 0 0;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(249, 115, 22, .16), transparent 35%),
    var(--white);
}

.final-cta h2,
.final-cta p {
  max-width: 780px;
  margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
  color: var(--slate-600);
  margin-top: 18px;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.site-footer {
  padding: 46px 0;
  background: var(--navy-900);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .55fr 1fr;
  gap: 42px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .7);
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .two-col.reverse,
  .employer-grid,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .cards.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 78px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero-panel {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-actions,
  .callout {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .card-grid,
  .demo-grid,
  .steps,
  .cards.three,
  .faq-grid,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .panel-top,
  .card-header {
    flex-direction: column;
  }
}
