:root {
  --bg: #091018;
  --bg-soft: #101923;
  --card: #121d28;
  --text: #f7f9fb;
  --muted: #a9b4bf;
  --line: rgba(255,255,255,.1);
  --red: #f20d24;
  --red-dark: #b90718;
  --white: #ffffff;
  --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;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9,16,24,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { width: 330px; max-width: 48vw; }
.brand img { width: 100%; height: 62px; object-fit: cover; object-position: center; }
nav { display: flex; align-items: center; gap: 26px; font-size: .95rem; }
nav > a:not(.button):hover { color: var(--red); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 14px 40px rgba(242,13,36,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(242,13,36,.32); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-ghost { background: transparent; border: 1px solid var(--line); box-shadow: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  background:
    radial-gradient(circle at 80% 30%, rgba(242,13,36,.12), transparent 30%),
    linear-gradient(180deg, #091018 0%, #0d151e 100%);
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: 40px;
  border-radius: 50%;
  background: rgba(242,13,36,.13);
  filter: blur(110px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1 { font-size: clamp(2.7rem, 5vw, 5rem); margin-bottom: 24px; letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.45rem); max-width: 880px; margin-bottom: 46px; letter-spacing: -.035em; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
.lead { max-width: 670px; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: .9rem; }
.trust-row span::before { content: "•"; color: var(--red); margin-right: 8px; }

.dashboard-card {
  background: linear-gradient(180deg, rgba(24,38,51,.96), rgba(14,24,34,.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
  transform: rotate(1deg);
}
.card-top { display: flex; align-items: center; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #38d46a; box-shadow: 0 0 18px #38d46a; }
.live { margin-left: auto; color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 22px 0; }
.stats div { background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.stats strong, .stats span { display: block; }
.stats strong { font-size: 1.6rem; }
.stats span { color: var(--muted); font-size: .82rem; }
.job-list { display: grid; gap: 10px; }
.job-list article { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 13px; background: rgba(255,255,255,.035); border-radius: 12px; }
.job-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; background: rgba(242,13,36,.13); color: var(--red); font-weight: 900; }
.job-list strong, .job-list small { display: block; }
.job-list small { color: var(--muted); }
.badge { padding: 5px 9px; border-radius: 999px; background: rgba(56,212,106,.12); color: #69e68f; font-size: .72rem; font-weight: 800; }
.badge.red { background: rgba(242,13,36,.14); color: #ff6a78; }
.badge.muted { background: rgba(255,255,255,.08); color: var(--muted); }

.section { padding: 105px 0; background: #f5f7f9; color: #101820; }
.section .eyebrow { color: var(--red); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 245px; padding: 30px; border-radius: 18px; background: var(--white); border: 1px solid #e3e8ed; box-shadow: 0 12px 35px rgba(24,35,45,.06); }
.feature-number { display: inline-block; margin-bottom: 42px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.feature-card p { margin: 0; color: #65717c; }

.section-dark { background: var(--bg-soft); color: var(--text); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.split h2 { margin-bottom: 0; }
.benefits { display: grid; gap: 18px; }
.benefits div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.benefits span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(242,13,36,.14); color: var(--red); font-weight: 900; }
.benefits p { margin: 0; color: var(--muted); }
.benefits strong { color: var(--text); }

.cta-section { padding: 90px 0; background: #f5f7f9; color: #101820; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 46px; border-radius: 22px; background: #fff; border: 1px solid #e3e8ed; box-shadow: 0 18px 50px rgba(24,35,45,.08); }
.cta-box h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 3rem); }

footer { padding: 52px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.footer-inner strong { color: var(--text); }
.footer-inner p { margin: 4px 0 0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--red); }
.footer-inner small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  nav > a:not(.button) { display: none; }
  .hero { padding-top: 80px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .dashboard-card { transform: none; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 72px; }
  .brand { max-width: 62vw; }
  .brand img { height: 48px; }
  h1 { font-size: 2.55rem; }
  .hero { padding: 70px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .job-list article { grid-template-columns: auto 1fr; }
  .badge { grid-column: 2; justify-self: start; }
  .cta-box, .footer-inner { display: grid; grid-template-columns: 1fr; }
  .cta-box { padding: 30px; }
  .footer-links { flex-wrap: wrap; }
}
