* {
  box-sizing: border-box;
}

:root {
  --blue: #0077ff;
  --black: #000;
  --panel: #4b4b4b;
  --panel-dark: #242424;
  --muted: #d9d9d9;
  --white: #fff;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

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

.top-strip {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.top-strip span + span::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 20px;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 470px;
  padding: 0 clamp(24px, 3.7vw, 76px) 74px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .52)), url("/assets/hero.png");
  background-size: cover;
  background-position: center;
}

.nav {
  width: 100%;
  height: 116px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.35vw, 56px);
  padding: 0;
}

.nav a:first-child {
  position: relative;
  flex: 0 0 207px;
  width: 207px;
  height: 82px;
  margin-right: auto;
  overflow: hidden;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
}

.logo {
  position: absolute;
  left: -33.59%;
  top: -66.67%;
  width: 169.51%;
  height: 241.18%;
  max-width: none;
}

.nav a {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  color: #000;
  white-space: nowrap;
}

.nav .button {
  min-width: 108px;
  min-height: 45px;
  padding: 0 22px;
  border-radius: 6px;
  color: var(--white);
  text-align: center;
  background: var(--blue);
}

.nav .button.secondary {
  background: #787878;
}

.nav .button:not(.secondary) {
  min-width: 164px;
}

.hero-content {
  max-width: 820px;
  margin-top: 96px;
}

.kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
  font-style: italic;
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 6px;
  background: var(--white);
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
}

h1 {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.04;
  font-weight: 900;
  font-style: italic;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  font-style: italic;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  font-style: italic;
}

p {
  font-size: 18px;
  line-height: 1.35;
}

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

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 800;
  text-shadow: 0 4px 1px rgba(0, 0, 0, .55);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.primary,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
}

.primary {
  background: var(--blue);
  color: var(--white);
}

.secondary-link {
  background: #787878;
  color: var(--white);
}

.section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 7vw, 112px);
}

.section.grey {
  background: var(--panel);
}

.section.blue-band {
  background: var(--blue);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  margin-bottom: 46px;
}

.section-head p {
  max-width: 760px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

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

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

.card {
  min-height: 220px;
  padding: 34px;
  border-radius: 7px;
  background: var(--panel);
}

.card.dark {
  background: var(--panel-dark);
}

.card p {
  margin: 18px 0 0;
  color: var(--white);
  font-weight: 600;
}

.number {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 58px;
  line-height: 1;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.image-panel {
  min-height: 360px;
  border-radius: 4px;
  background-image: url("/assets/about.png");
  background-size: cover;
  background-position: center;
}

.contact-panel {
  padding: 40px;
  border-radius: 7px;
  background: var(--panel);
}

.contact-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-size: 18px;
  font-weight: 800;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span:first-child {
  color: var(--blue);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, .4fr));
  gap: 48px;
  padding: 72px clamp(24px, 7vw, 112px) 56px;
  background: var(--black);
}

.footer img {
  width: 185px;
}

.footer p,
.footer a {
  display: block;
  max-width: 440px;
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 800;
}

.footer strong {
  display: block;
  margin-bottom: 18px;
  font-size: 18px;
}

.copyright {
  padding: 14px 24px;
  border-radius: 6px 6px 0 0;
  background: var(--blue);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
    height: auto;
    min-height: 116px;
    padding-block: 0 18px;
  }

  .logo {
    flex-basis: 100%;
  }

  .section-head,
  .split,
  .grid,
  .grid.two,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .top-strip {
    gap: 10px;
    font-size: 12px;
  }

  .top-strip span + span::before {
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }

  .nav a {
    font-size: 13px;
  }

  .nav .button {
    min-width: 0;
    padding: 12px 16px;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero-content {
    margin-top: 58px;
  }

  .card,
  .contact-panel {
    padding: 26px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}
