:root {
  --navy: #0a2a66;
  --blue: #1e88e5;
  --sky: #3fa9f5;
  --ink: #f8fafc;
  --muted: #cbd5e1;
  --bg: #020617;
  --card: #0f172a;
  --line: rgba(148, 163, 184, 0.22);
  --soft-blue: rgba(63, 169, 245, 0.14);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(30, 136, 229, 0.18), transparent 34rem),
    radial-gradient(circle at 92% 10%, rgba(63, 169, 245, 0.12), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
}

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  min-width: max-content;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 3px;
  box-shadow: 0 10px 30px rgba(10, 42, 102, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky));
  color: white;
  box-shadow: var(--shadow);
}

.btn-light {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.82);
  color: var(--ink);
}

.icon-btn,
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: var(--ink);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.menu-btn {
  display: none;
}

.hero,
.page-hero {
  background:
    radial-gradient(circle at 15% 18%, rgba(63, 169, 245, 0.24), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(20, 184, 166, 0.12), transparent 28%),
    linear-gradient(180deg, #020617, #071326);
}

.hero {
  padding: 104px 0 88px;
}

.page-hero {
  padding: 82px 0 70px;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(25px, 3.5vw, 38px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.muted {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.center {
  margin-inline: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(7, 19, 38, 0.9));
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  padding: 24px;
}

.card:hover {
  box-shadow: var(--shadow);
}

.stat-card h3 {
  color: var(--blue);
  font-size: 28px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 800;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.image-card img {
  height: 250px;
  object-fit: cover;
}

.image-card .card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.job-card {
  display: grid;
  gap: 10px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 6px;
}

.job-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--muted);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.job-detail-list {
  display: grid;
  gap: 16px;
  padding-left: 18px;
}

.job-detail-list li {
  color: var(--muted);
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-card img {
  height: 380px;
  object-fit: cover;
}

.hero-card-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-card-footer div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-card-footer div:last-child {
  border-right: 0;
}

.dark-band {
  background:
    radial-gradient(circle at 0% 0%, rgba(30, 136, 229, 0.18), transparent 28rem),
    linear-gradient(135deg, #020617, #06172f 52%, #071326);
  color: white;
}

.dark-band .lead,
.dark-band .muted {
  color: #cbd5e1;
}

.process {
  counter-reset: step;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.72);
  color: var(--ink);
  padding: 12px;
}

textarea {
  resize: vertical;
}

.success {
  display: none;
  margin: 0;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.12);
  color: #5eead4;
  padding: 12px;
  font-weight: 700;
}

.site-footer {
  background: #020617;
  color: white;
  padding: 58px 0 28px;
}

.site-footer .grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.site-footer a,
.site-footer p {
  color: #cbd5e1;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid #1e293b;
  padding-top: 22px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .site-footer .grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: grid;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 66px 0;
  }

  .hero,
  .page-hero {
    padding: 70px 0 58px;
  }

  .cols-2,
  .cols-3,
  .cols-4,
  .form-row,
  .hero-card-footer {
    grid-template-columns: 1fr;
  }

  .nav-actions .btn {
    display: none;
  }
}
