:root {
  --bg: #f8fafc;
  --white: #ffffff;
  --ink: #05070d;
  --muted: #5a6272;
  --navy: #0a1a36;
  --navy-soft: #102a57;
  --line: #e4e8ef;
  --gradient: linear-gradient(135deg, #0a1a36, #1f3f79 60%, #3c6ee4);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(10, 26, 54, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 90% 10%, rgba(60, 110, 228, 0.08), transparent 35%), var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.alt-bg {
  background: #f1f4f9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.desktop-nav {
  display: flex;
  gap: 24px;
}

.desktop-nav a,
.site-footer a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--navy);
}

.desktop-nav a.active {
  color: var(--navy);
  font-weight: 700;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(15, 49, 117, 0.32);
}

.btn-secondary,
.btn-outline {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
}

.hero-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  color: var(--navy-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

.subheadline {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 64ch;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.glass-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(238, 244, 255, 0.65));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.dashboard {
  padding: 16px;
}

.dash-header {
  display: flex;
  gap: 6px;
  padding: 0 0 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0dae8;
}

.dash-content {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
}

.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.metric p,
.small-note,
.section-head p {
  color: var(--muted);
  margin: 0;
}

.metric strong {
  color: var(--navy);
  font-size: 1.4rem;
}

.bars {
  margin: 16px 0;
  display: grid;
  gap: 10px;
}

.bars span {
  display: block;
  height: 8px;
  width: var(--w);
  border-radius: 999px;
  background: var(--gradient);
}

.section-head {
  max-width: 72ch;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  margin: 10px 0 10px;
}

.about-grid,
.why-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(10, 26, 54, 0.04);
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff4ff;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #cbd6eb;
  box-shadow: var(--shadow);
}

.ai-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glow-card {
  border-radius: var(--radius);
  padding: 18px;
  color: var(--white);
  font-weight: 600;
  background: linear-gradient(150deg, #0a1a36, #19366f);
  border: 1px solid #264b8f;
  box-shadow: 0 0 18px rgba(57, 110, 255, 0.34), inset 0 0 30px rgba(255, 255, 255, 0.06);
}

.staffing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.staffing-categories,
.staffing-workflow {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

ul,
ol {
  padding-left: 18px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 12px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
}

.step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--white);
  font-weight: 700;
}

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

.badge-wrap span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ccd9ef;
  background: #ffffff;
  color: var(--navy);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d4dbea;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.form-status {
  margin: 2px 0 0;
  min-height: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #0a1428;
  color: #d6e0f2;
  padding: 52px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
}

.site-footer a {
  color: #b2c4df;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 14px;
  color: #afbdd5;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .service-grid,
  .ai-grid,
  .about-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .hero-grid,
  .staffing-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .service-grid,
  .ai-grid,
  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}
