:root {
  --bg-dark: #060f23;
  --bg-light: #eef1f5;
  --text: #121d2f;
  --muted: #6c7890;
  --blue: #1f7dff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Sora', sans-serif;
  color: var(--text);
  background: var(--bg-light);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  height: 54px;
  background: #fff;
  border-bottom: 1px solid #e6e9ef;
  display: flex;
  align-items: center;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  text-decoration: none;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  text-decoration: none;
  color: #1b2536;
  font-size: 12px;
}

.dark {
  background: #060f23;
}

.light {
  background: var(--bg-light);
}

.hero {
  padding: 26px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  color: #f7f9fc;
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: -1.2px;
  max-width: 520px;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-actions {
  margin-top: 18px;
  margin-bottom: 18px;
}

.btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 500;
}

.btn-solid {
  background: linear-gradient(90deg, #2a7bff, #245eff);
  color: #fff;
}

.hero-tags {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-tags span {
  height: 34px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #8896ad;
  background: rgba(7, 16, 34, 0.65);
  border: 1px solid #27344a;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-visual {
  border-radius: 16px;
  overflow: hidden;
  background: #0b1633;
  min-height: 440px;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 68px 0;
}

.narrow {
  width: min(980px, 92%);
}

h2 {
  margin: 0;
  text-align: center;
  font-size: 48px;
  line-height: 1.14;
  letter-spacing: -1px;
}

h2.left {
  text-align: left;
  font-size: 40px;
}

.sub {
  margin: 16px auto 30px;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: #f5f7fb;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: #e6efff;
  display: grid;
  place-items: center;
}

.stat-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.stat-card h3 {
  margin: 0;
  font-size: 34px;
}

.stat-card h4 {
  margin: 4px 0;
  font-size: 12px;
}

.stat-card p {
  margin: 0;
  font-size: 10px;
  color: #7c889d;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.media-card {
  border-radius: 10px;
  overflow: hidden;
}

.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-card p {
  margin: 14px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.text-card ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.text-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #2a3140;
  font-size: 12px;
  line-height: 1.65;
}

.text-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  background-image: url("workforce-bullet.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.alt {
  background: #e9edf3;
}

.cta-box {
  border-radius: 14px;
  background: radial-gradient(circle at 20% 50%, rgba(41, 120, 255, 0.32) 0, transparent 35%), #0c1320;
  padding: 52px 20px;
  text-align: center;
}

.cta-box h2 {
  color: #fff;
  font-size: 44px;
}

.cta-box h2 span {
  color: #2a7bff;
}

.cta-box .btn {
  margin-top: 20px;
}

.demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 10, 24, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1300;
}

.demo-modal.is-open {
  display: flex;
}

.demo-modal-card {
  position: relative;
  width: min(740px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #eff2f7;
  border-radius: 20px;
  padding: 34px 38px 28px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #061127;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  z-index: 2;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.demo-modal-title {
  margin: 0;
  text-align: center;
  color: #2a60df;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -1px;
}

.demo-modal-subtitle {
  margin: 8px 0 0;
  text-align: center;
  color: #2a60df;
  font-size: 16px;
  font-weight: 600;
}

.demo-form-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.demo-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-form-field label {
  font-size: 13px;
  color: #1a2437;
  font-weight: 600;
}

.demo-form-field input,
.demo-form-field textarea {
  width: 100%;
  border: 1px solid #c8d0dc;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 13px;
  font-family: inherit;
  color: #1b2538;
  background: #fff;
}

.demo-form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.demo-form-field.full-width {
  grid-column: 1 / -1;
}

.demo-submit-btn {
  margin-top: 16px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #2a7bff, #245eff);
  color: #fff;
  padding: 12px 14px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.demo-form-note {
  margin: 14px 0 0;
  text-align: center;
  color: #6a7891;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.demo-form-note::before {
  content: "";
  width: 13px;
  height: 13px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b98ad' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 5-3.5 8.5-7 9-3.5-.5-7-4-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.illustration-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1200;
}

.illustration-modal:target {
  display: flex;
}

.illustration-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #2f3d59;
  background: rgba(9, 16, 30, 0.9);
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}

.illustration-img {
  width: min(1800px, 100%);
  max-height: calc(100vh - 56px);
  object-fit: contain;
  display: block;
  background: #fff;
}

.footer {
  padding: 44px 0 22px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer p {
  margin: 10px 0 0;
  color: #66768d;
  font-size: 11px;
  line-height: 1.6;
}

.footer .small {
  color: #8b99ad;
}

.footer h5 {
  margin: 0 0 12px;
  font-size: 12px;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #66768d;
  font-size: 11px;
  margin-bottom: 8px;
}

.policy-row {
  margin-top: 20px;
  display: flex;
  gap: 26px;
}

.policy-row a {
  margin: 0;
  color: #95a1b5;
}

.demo-success {
  min-height: 220px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 12px 8px 8px;
}

.demo-success-title {
  margin: 0;
  color: #2e63db;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.demo-form[hidden],
.demo-form-note[hidden],
#demoModalTitle[hidden],
#demoModalSubtitle[hidden],
.demo-success[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .stats-grid,
  .split,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  h2,
  h2.left,
  .cta-box h2 {
    font-size: 34px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-tags span {
    height: 36px;
    padding: 0 16px;
    font-size: 12px;
  }

  .policy-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .demo-modal-card {
    padding: 26px 20px 22px;
  }

  .demo-modal-close {
    top: 10px;
    right: 10px;
  }

  .demo-modal-title {
    font-size: 40px;
  }

  .demo-form-grid {
    grid-template-columns: 1fr;
  }
}
