:root {
  --ink: #10233f;
  --muted: #66758a;
  --line: #dce5ed;
  --lime: #bbd757;
  --lime-dark: #8aa92b;
  --blue: #0e305d;
  --cyan: #2fc7d3;
  --paper: #f7fafc;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 35, 63, 0.14);
}

* {
  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;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px 14px 20px;
  background: rgba(8, 19, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  place-items: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 140px 24px 56px;
  overflow: hidden;
}

.hero-media,
.dark-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 19, 36, 0.86), rgba(8, 19, 36, 0.48) 48%, rgba(8, 19, 36, 0.24)),
    url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 19px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 750;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--lime);
  color: #17220d;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: rgba(11, 28, 52, 0.62);
}

.metric {
  color: var(--white);
  font-size: 38px;
  font-weight: 850;
  line-height: 1;
}

.hero-panel span:last-child,
.stats-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.media-frame {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(187, 215, 87, 0.22), rgba(47, 199, 211, 0.12)),
    var(--paper);
}

.media-frame img {
  max-height: 430px;
  object-fit: contain;
}

.video-section {
  padding-top: 0;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #081324;
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dark-band {
  position: relative;
  overflow: hidden;
  padding: 88px 24px;
  background: #091123;
}

.dark-band .dark-image {
  background-image:
    linear-gradient(90deg, rgba(9, 17, 35, 0.88), rgba(9, 17, 35, 0.7)),
    url("assets/recruiting.jpg");
  opacity: 0.95;
}

.stats-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.stats-grid div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  color: var(--white);
  font-size: clamp(34px, 5vw, 55px);
  line-height: 1;
}

.section-heading {
  max-width: 510px;
}

.section-heading.wide {
  max-width: 780px;
  margin-bottom: 34px;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.process-list article,
.pillars article,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 35, 63, 0.07);
}

.process-list article {
  min-height: 230px;
  padding: 24px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 900;
}

.city-section {
  width: 100%;
  padding: 86px max(20px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.search-box {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: var(--white);
}

.search-box input:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(187, 215, 87, 0.22);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}

.city-grid span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #34475e;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.form-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.form-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
}

.form-tabs button.active {
  background: var(--blue);
  color: var(--white);
}

.form-shell iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: var(--white);
}

.about {
  width: 100%;
  padding: 86px max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(14, 48, 93, 0.05), rgba(187, 215, 87, 0.12)),
    var(--white);
}

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

.pillars article {
  padding: 26px;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 30px;
}

.testimonial-grid blockquote {
  margin: 0 0 24px;
  color: #34475e;
  font-size: 18px;
}

.testimonial-grid figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-grid img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.16);
}

.testimonial-grid strong {
  display: block;
  color: var(--blue);
  font-size: 16px;
}

.site-footer {
  padding: 76px max(20px, calc((100vw - 1120px) / 2)) 0;
  background: #161b27;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
  gap: 46px;
}

.footer-brand img {
  width: 154px;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 0;
  color: #9298a6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.footer-subhead {
  padding-top: 30px;
}

.footer-column a,
.footer-column address {
  color: #8f96a5;
  font-size: 16px;
  line-height: 1.6;
  font-style: normal;
}

.footer-column a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #dbe2ec;
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 54px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f96a5;
  text-align: right;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 430px;
  padding: 140px 24px 68px;
  overflow: hidden;
  background: #081324;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 19, 36, 0.9), rgba(8, 19, 36, 0.54)),
    url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
}

.page-hero-inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(44px, 7vw, 78px);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  font-weight: 700;
}

.page-main {
  background: var(--white);
}

.page-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.page-content.narrow {
  width: min(900px, calc(100% - 40px));
}

.page-content h2 {
  margin-top: 12px;
}

.page-content p,
.page-content li {
  color: var(--muted);
  font-size: 17px;
}

.content-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.info-card,
.article-card,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 35, 63, 0.07);
}

.info-card,
.article-card {
  padding: 26px;
}

.article-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 850;
  background: var(--paper);
}

.legal-copy {
  padding: 34px;
}

.legal-copy + .legal-copy {
  margin-top: 24px;
}

.legal-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.legal-copy h3 {
  margin-top: 26px;
}

.blog-empty {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(8, 19, 36, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    min-height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 124px 20px 40px;
  }

  .hero-inner,
  .section-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .process-list,
  .stats-grid,
  .pillars,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .content-grid,
  .article-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 620px) {
  .process-list,
  .stats-grid,
  .pillars,
  .testimonial-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .city-section,
  .about {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .form-tabs {
    overflow: auto;
  }

  .form-tabs button {
    flex: 0 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    text-align: left;
  }
}
