:root {
  --black: #000000;
  --white: #ffffff;
  --ink: #1f1f1f;
  --grey: #4d4d4d;
  --light-grey: #f2f2f2;
  --border-grey: #d9d9d9;
  --blue: #005cb2;
  --blue-dark: #004789;
  --green: #0b7a44;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Host Grotesk", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.55;
}

img,
video,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 9999;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-section {
  background: var(--light-grey);
  overflow: hidden;
  padding: 64px 0 0;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 70px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 800;
  max-width: 640px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.8px;
  font-weight: 800;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-copy p,
.section-copy p {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
  max-width: 600px;
}

.hero-image-wrap {
  align-self: end;
  text-align: center;
}

.hero-image {
  max-width: 496px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.button-row {
  margin: 28px 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 24px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--light-grey);
}

.text-link {
  color: var(--blue);
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
}

.content-section {
  padding: 82px 0;
}

.white-section {
  background: var(--white);
}

.grey-section {
  background: var(--light-grey);
}

.section-media img {
  width: 100%;
  display: block;
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
}

.centered-copy {
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.industry-card {
  position: relative;
  background: var(--white);
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  padding: 28px 28px 58px;
  margin: 28px auto;
}

.industry-main {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.industry-main img {
  width: 144px;
}

.industry-main p,
.accordion-content p {
  font-size: 18px;
  line-height: 1.55;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.accordion-content > * {
  overflow: hidden;
}

.accordion-card.open .accordion-content {
  grid-template-rows: 1fr;
  margin-top: 16px;
}

.accordion-toggle {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: var(--blue);
  background: var(--white);
  border: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stats-grid div {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-grid strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
  color: var(--blue);
  margin-bottom: 8px;
}

.stats-grid span {
  font-size: 16px;
  color: var(--grey);
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logo-row span {
  min-width: 180px;
  padding: 20px 28px;
  border: 1px solid var(--border-grey);
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  color: var(--grey);
  background: var(--white);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}

.footer-grid p {
  color: var(--white);
  font-size: 15px;
  margin: 0;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}

.footer-grid a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-navbar {
    width: min(100% - 32px, 1150px);
  }

  .mobile-menu-btn {
    display: block;
  }

  .site-nav-wrapper {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px 24px 24px;
    box-shadow: var(--shadow);
  }

  .site-nav-wrapper.open {
    display: block;
  }

  .site-nav,
  .site-nav-right {
    display: block;
  }

  .site-nav-item,
  .nav-link,
  .search-btn {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav-item {
    display: block;
    border-bottom: 1px solid var(--border-grey);
  }

  .search-item,
  .language-item {
    padding-right: 0;
    border-right: 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin: 0 0 14px;
  }

  .wide-dropdown,
  .small-dropdown {
    min-width: 100%;
    padding: 20px;
    flex-direction: column;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reverse-mobile .section-media {
    order: 2;
  }

  .hero-copy {
    padding-bottom: 24px;
  }

  .content-section {
    padding: 60px 0;
  }

  .industry-main {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .footer-grid nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy p,
  .section-copy p {
    font-size: 17px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
