:root {
  --bg-light: #edeff5;
  --blue: #003df5;
  --navy: #0f172e;
  --slate: #4d5778;
  --white: #ffffff;
  --snow: #f9fcfe;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  color: var(--navy);
  background: var(--snow);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0f172e;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: 1236px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 702px;
  background: url("./assets/hero_usecase_museum_bkg.jpg?v=1") center top / cover no-repeat;
}

.hero.hero--airport {
  background-image: url("./assets/hero_usecase_airports_bkg.jpg?v=1");
}


.hero.hero--shoppings {
  background-image: url("./assets/hero_usecase_shoppingMall_bkg.jpg");
}

.hero.hero--urbannavigation {
  background-image: url("./assets/hero_usecase_smartcities_bkg.jpg");
}

.hero.hero--urbanriders {
  background-image: url("./assets/hero_usecase_urbanRiders_bkg.jpg");
}

.hero.hero--accessibility {
  background-image: url("./assets/hero_usecase_accessibility_bkg.jpg");
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  pointer-events: none;
}

.value-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.value-list li {
  font-size: 20px;
  color: #0f172e;
  line-height: normal;
  position: relative;
  padding-left: 18px;
}

.value-list li::before {
  content: "_";
  display: block;
  line-height: normal;
}


.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.brand {
  width: 300px;
  max-width: 100%;
}

.brand-footer {
  filter: brightness(0) invert(1);
}

.menu-wrap {
  display: inline-flex;
  height: 65px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 30px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10.4px);
  -webkit-backdrop-filter: blur(10.4px);
}

.menu-wrap a {
  text-decoration: none;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.menu-wrap a.active {
  color: #f06359;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid #003df5;
  outline-offset: 3px;
  border-radius: 8px;
}

.mobile-nav {
  display: none;
}

.hamburger {
  list-style: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10.4px);
  -webkit-backdrop-filter: blur(10.4px);
  border: 1px solid rgba(15, 23, 46, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger::-webkit-details-marker {
  display: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #0f172e;
  border-radius: 3px;
}

.mobile-menu-wrap {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10.4px);
  -webkit-backdrop-filter: blur(10.4px);
  border-radius: 24px;
  padding: 14px 16px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(15, 23, 46, 0.12);
}

.mobile-menu-wrap a {
  color: #0f172e;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu-wrap a.active {
  color: #f06359;
}

.hero-copy {
  max-width: 610px;
  margin-top: 55px;
}

.hero-copy h1 {
  margin: 0;
  color: #0f172e;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Lexend", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 14px 0 0;
  color: #0f172e;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Lexend", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 618px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-cta--stacked {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  line-height: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  padding: 18px 28px;
}

.btn-outline {
  color: var(--navy);
  border: 3px solid var(--navy);
  font-size: 20px;
  padding: 14px 26px;
}

.benefits {
  background: linear-gradient(162.242deg, #003df5 20.537%, #0f9ee9 72.889%);
  padding: 60px 0;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 300px;
}

.benefits img {
  width: 120px;
  height: 120px;
}

.benefits p {
  margin: 0;
  width: 155px;
  color: #f9fcfe;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.panel {
  padding: 60px 0;
}

.panel-light {
  background: var(--bg-light);
}

.panel-white {
  background: var(--white);
}

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

.panel-cta {
  background: linear-gradient(96deg, #eb3333 5%, #f35e5e 54%, #f5597f 95%);
  padding: 60px 0;
}

.cta-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.panel-cta .line {
  width: 100px;
  height: 6px;
  margin: 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--slate);
  font-size: 16px;
}

.dark-eyebrow {
  color: #919dc4;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.16;
}

.tight {
  margin-bottom: 44px;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.2;
}

.dash-list li::before {
  content: "_ ";
}

.big-blue {
  margin: 24px 0 0;
  color: var(--blue);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.15;
}

.problem-section {
  background: #edeff5;
  padding: 60px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 596px 596px;
  justify-content: space-between;
  gap: 44px;
  align-items: start;
}

.problem-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-eyebrow {
  margin: 0;
  color: #4d5778;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.problem-title {
  margin: 0;
  color: #0f172e;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.problem-list li {
  color: #0f172e;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.problem-list li::before {
  content: "_";
  display: block;
  line-height: normal;
}

.problem-result {
  margin: 0;
  color: #003df5;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

.problem-result strong {
  font-weight: 700;
}

.airport-enables-steps .enables-step {
  text-align: left;
  padding-left: 0;
  padding-right: 12px;
}

.airport-enables-steps .enables-step h4 {
  text-align: left;
}

.airport-ops-block--second {
  margin-top: 48px;
}

.airport-ops-mobile-list {
  display: none;
}

.airport-beyond-shell {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.airport-beyond-grid {
  display: grid;
  grid-template-columns: 596px 596px;
  justify-content: space-between;
  gap: 44px;
  align-items: start;
}

.airport-beyond-lead {
  margin: 0 0 24px;
  color: #0f172e;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.airport-beyond-body {
  margin: 0 0 16px;
  color: #edeff5;
  font-size: 20px;
  font-weight: 200;
  line-height: normal;
}

.airport-beyond-body:last-of-type {
  margin-bottom: 0;
}

.airport-beyond-line {
  width: 100px;
  height: 6px;
  background: #edeff5;
}

.airport-beyond-quote {
  margin: 24px 0 0;
  color: #003df5;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.airport-prefooter {
  background: #edeff5;
}

.airport-prefooter-inner {
  gap: 24px;
}

.airport-prefooter-line {
  background: #4d5778;
}

.airport-prefooter-title {
  margin: 0;
  color: #0f172e;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.airport-prefooter-sub {
  margin: 0;
  color: #0f172e;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.value-section {
  background: #ffffff;
  padding: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: 596px 596px;
  justify-content: center;
  gap: 44px;
  align-items: stretch;
}

.value-media {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 588px;
  padding: 0;
}

.value-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}

h3 {
  margin: 0 0 24px;
  color: #003df5;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.value-main {
  margin: 0 0 20px;
  color: #0f172e;
  font-size: 30px;
  line-height: normal;
  font-weight: 600;
}

.value-sub {
  margin: 0;
  color: #0f172e;
  font-size: 20px;
  line-height: normal;
}

.band {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.steps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

h4 {
  margin: 0 0 10px;
  color: var(--slate);
  font-size: clamp(26px, 2.2vw, 44px);
  line-height: 1.04;
}

.steps p {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.18;
}

.how-section {
  background: var(--snow, #f9fcfe);
  padding: 60px 0;
}

.how-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.how-header .eyebrow {
  margin: 0;
}

.how-title {
  margin: 0;
  color: #0f172e;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.how-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.how-images img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.how-steps {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.how-step {
  width: 100%;
  max-width: 412px;
  text-align: center;
  padding: 0 10px;
}

.how-step h4 {
  margin: 0 0 6px;
  color: #4d5778;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.how-step p {
  margin: 0;
  color: #0f172e;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.how-mobile-list {
  display: none;
}

.enables-section {
  padding: 60px 0;
}

.enables-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.enables-header .eyebrow {
  margin: 0;
}

.enables-title {
  margin: 0;
  color: #0f172e;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.enables-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.enables-images img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.enables-steps {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.enables-step {
  width: 100%;
  max-width: 412px;
  text-align: center;
  padding: 0 10px;
}

.enables-step h4 {
  margin: 0 0 6px;
  color: #4d5778;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.enables-step p {
  margin: 0;
  color: #0f172e;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.enables-mobile-list {
  display: none;
}

.why-section {
  background: #4d5778;
  padding: 60px 0;
}

.why-shell {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: 596px 596px;
  justify-content: space-between;
  gap: 44px;
  align-items: start;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-right {
  display: flex;
  flex-direction: column;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.why-list li {
  width: 100%;
  color: #edeff5;
  font-size: 20px;
  font-weight: 200;
  line-height: normal;
}
.why-eyebrow {
  margin: 0;
  color: #919dc4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.why-line {
  width: 100px;
  height: 6px;
  background: #edeff5;
}

.why-title {
  margin: 0;
  color: #edeff5;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}



.why-list li::before {
  content: "_";
  display: block;
  line-height: normal;
}

.line {
  width: 72px;
  height: 5px;
  background: #edeff5;
  margin-bottom: 20px;
}

.dark-title {
  color: #edeff5;
}

.light-list {
  color: #edeff5;
}

.cta-title {
  color: #edeff5;
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.cta-sub {
  margin: 0;
  color: #edeff5;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.btn-dark {
  background: #071119;
  color: #edeff5;
  font-size: 20px;
  padding: 14px 22px;
}

.footer {
  background: var(--blue);
  color: var(--snow);
  padding: 60px 0 48px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.social {
  display: flex;
  gap: 20px;
  margin: 28px 0 18px;
}

.social a {
  display: inline-flex;
  border-radius: 999px;
}

.social img {
  width: 50px;
  height: 50px;
}

.footer a {
  color: var(--snow);
  display: block;
  margin: 8px 0;
  font-size: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(90px, 1fr));
  gap: 14px;
  max-width: 690px;
}

h5 {
  margin: 0 0 8px;
  font-size: 20px;
}

.footer-links p {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .menu-wrap {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-backdrop {
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-copy {
    margin-top: 40px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-shell {
    gap: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-list li {
    width: 100%;
  }

  .airport-beyond-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .airport-beyond-quote {
    font-size: 26px;
  }

  .airport-prefooter-title {
    font-size: 32px;
  }

  .problem-section {
    padding: 40px 0;
  }

  .two-col,
  .value-grid,
  .steps,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .how-images,
  .how-steps,
  .enables-images,
  .enables-steps {
    grid-template-columns: 1fr;
  }

  .how-images,
  .how-steps {
    display: none;
  }

  .how-mobile-list {
    display: grid;
    gap: 24px;
    margin-top: 24px;
  }

  .enables-images,
  .enables-steps {
    display: none;
  }

  .enables-mobile-list {
    display: grid;
    gap: 24px;
    margin-top: 24px;
  }

  .how-mobile-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
  }

  .how-mobile-item h4 {
    margin: 0 0 6px;
    color: #4d5778;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
  }

  .how-mobile-item p {
    margin: 0;
    color: #0f172e;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }

  .enables-mobile-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
  }

  .enables-mobile-item h4 {
    margin: 0 0 6px;
    color: #4d5778;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
  }

  .enables-mobile-item p {
    margin: 0;
    color: #0f172e;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }

  .how-images img,
  .enables-images img {
    height: 190px;
  }

  .how-step,
  .enables-step {
    max-width: none;
    padding: 0;
    margin-bottom: 22px;
  }

  .value-media {
    min-height: 280px;
    padding: 0;
  }

  .value-copy {
    padding: 40px 24px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-content: initial;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Home */
.home-page {
  background: #f9fcfe;
}

.home-hero {
  position: relative;
  min-height: 702px;
  background: url("./assets/hero_home_bkg.jpg") center top / cover no-repeat;
  overflow: hidden;
}

.home-hero-blur {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.home-menu-wrap {
  position: static;
  margin-left: auto;
}

.home-hero-copy {
  margin-top: 40px;
  max-width: 614px;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #0f172e;
  line-height: normal;
  max-width: 614px;
}

.home-hero-copy p {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 400;
  color: #0f172e;
  line-height: normal;
  max-width: 595px;
}

.home-hero-copy p strong {
  font-weight: 700;
}

.home-hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-icons {
  background: linear-gradient(156.813deg, #003df5 20.537%, #0f9ee9 72.889%);
  padding: 60px 0;
}

.home-icons-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}

.home-waveout {
  background: #f9fcfe;
  padding: 0;
}

.home-waveout-inner {
  display: grid;
  grid-template-columns: 596px 596px;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.home-waveout-media {
  width: 596px;
  max-width: 100%;
}

@media (max-width: 1236px) and (min-width: 981px) {
  .home-waveout-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
  }

  .home-waveout-media {
    width: 100%;
  }

  .home-waveout-copy {
    max-width: none;
    width: 100%;
  }
}

.home-waveout-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.home-waveout-copy {
  width: 596px;
  max-width: 100%;
  color: #0f172e;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 97px;
}

.home-waveout-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.home-waveout-body {
  width: 100%;
}

.home-waveout-copy h2 {
  margin: 0;
  width: 100%;
  color: #003df5;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Lexend", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.home-waveout-title-dark,
.home-waveout-title-blue {
  display: inline;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Lexend", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.home-waveout-title-dark {
  color: #0f172e;
}

.home-waveout-title-blue {
  color: #003df5;
}

.home-waveout-logo-horizontal {
  display: block;
  height: 40px;
  width: 292.989px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.home-waveout-body p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  font-feature-settings: "liga" off, "clig" off;
  color: #0f172e;
}

.home-waveout-body p + p {
  margin-top: 10px;
}

.home-waveout-downloads {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 505.129px;
}

.home-waveout-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.home-waveout-stores .home-waveout-store img {
  display: block;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.home-waveout-stores .home-waveout-store:nth-child(1) img {
  width: 221.379px;
  max-width: 100%;
}

.home-waveout-stores .home-waveout-store:nth-child(2) img {
  width: 249.75px;
  max-width: 100%;
}

.home-icon-card {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-icon-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-icon-head img {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
}

.home-icon-head h3 {
  margin: 0;
  color: #f9fcfe;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.home-icon-card p {
  margin: 0;
  color: #f9fcfe;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.home-use-cases {
  padding: 60px 0;
  background: #edeff5;
}

.home-use-cases-eyebrow {
  margin: 0;
  color: #4d5778;
  font-size: 16px;
  line-height: normal;
}

.home-use-cases-title {
  margin: 24px 0 0;
  color: #0f172e;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.home-use-cases-subtitle {
  margin: 24px 0 0;
  max-width: 1172px;
  color: #0f172e;
  font-size: 44px;
  font-weight: 600;
  line-height: normal;
}

.home-use-cases-subtitle span {
  color: #003df5;
}

.home-use-cases-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  justify-content: flex-start;
  gap: 18px;
}

.home-use-case-card {
  width: 400px;
}

.home-use-case-media {
  width: 400px;
  height: 340px;
  object-fit: cover;
  display: block;
}

.home-use-case-body {
  margin-top: -79px;
  min-height: 340px;
  background: rgba(247, 247, 247, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-use-case-body h3 {
  margin: 0;
  color: #003df5;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.home-use-case-body p {
  margin: 0;
  color: #0f172e;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.home-use-case-body p strong {
  font-weight: 700;
}

.home-use-case-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.home-use-case-body .btn-primary {
  color: #edeff5;
}

.home-logo-section {
  padding: 60px 0;
}

.home-logo-section-light {
  background: #ffffff;
}

.home-logo-section-gray {
  background: #edeff5;
}

.home-logo-section h2,
.home-team h2,
.home-awards h2 {
  margin: 0;
  color: #003df5;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.home-logo-section p,
.home-team > .container > p:not(.home-team-lead),
.home-awards > .container > p {
  margin: 16px 0 0;
  color: #003df5;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.home-team-lead {
  margin: 16px 0 0;
  max-width: 1236px;
  color: #003df5;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.home-logo-grid {
  margin-top: 60px;
  display: grid;
  gap: 16px 110px;
  align-items: center;
}

.home-logo-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-logo-grid img {
  width: 100%;
  max-height: 103px;
  object-fit: contain;
  justify-self: center;
}

.home-strategic-rows {
  margin-top: 60px;
  display: grid;
  gap: 16px;
}

.home-strategic-row {
  display: grid;
  gap: 110px;
  align-items: start;
}

.home-strategic-row-4 {
  grid-template-columns: repeat(4, 227px);
}

.home-strategic-row-3 {
  grid-template-columns: repeat(3, 227px);
}

.home-strategic-row-2 {
  grid-template-columns: repeat(2, 227px);
  justify-content: start;
}

.home-strategic-logo {
  width: 227px;
  min-height: 103px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-strategic-logo img {
  width: 227px;
  height: 103px;
  object-fit: fill;
}

.home-strategic-logo p {
  margin: 6px 0 0;
  width: 226px;
  color: #071119;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  line-height: normal;
}

.home-team {
  background: #f9fcfe;
  padding: 60px 0;
}

.home-team-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 412px);
  justify-content: center;
  gap: 0;
}

.home-team-card {
  width: 412px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.home-team-photo {
  width: 100%;
  height: 158px;
  overflow: hidden;
}

.home-team-photo img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-team-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 392px;
}

.home-team-card h3 {
  margin: 0;
  color: #071119;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.home-team-card p {
  margin: 0;
  color: #071119;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.home-awards {
  background: #4d5778;
  padding: 60px 0;
}

.home-awards h2,
.home-awards > .container > p {
  color: #ffffff;
}

.home-awards-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 25px;
}

.home-awards-grid article {
  text-align: center;
}

.home-awards-grid img {
  width: 100%;
  max-width: 227px;
  height: 103px;
  object-fit: contain;
}

.home-awards-grid h3 {
  margin: 6px 0 8px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.home-awards-grid p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: normal;
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero-blur {
    width: 100%;
  }

  .home-nav {
    align-items: flex-start;
  }

  .home-menu-wrap {
    display: none;
  }

  .home-hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-hero-copy {
    margin-top: 40px;
  }

  .home-hero-copy h1 {
    font-size: 40px;
  }

  .home-hero-copy p {
    font-size: 20px;
  }

  .home-hero-ctas {
    margin-top: 32px;
  }

  .home-icons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-content: initial;
  }

  .home-use-cases-title {
    font-size: 32px;
  }

  .home-use-cases-subtitle {
    font-size: 32px;
  }

  .home-use-cases-grid {
    grid-template-columns: 1fr;
  }

  .home-use-case-card,
  .home-use-case-media {
    width: 100%;
  }

  .home-use-case-media {
    height: 260px;
  }

  .home-use-case-body {
    margin-top: 0;
    min-height: auto;
    padding: 24px;
  }

  .home-use-case-body h3 {
    font-size: 30px;
  }

  .home-use-case-body p {
    font-size: 20px;
  }

  .home-waveout-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .home-waveout-media {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .home-waveout-copy {
    gap: 24px;
    width: 100%;
  }

  .home-waveout-text-block {
    gap: 16px;
  }

  .home-waveout-copy h2 {
    font-size: 32px;
  }

  .home-waveout-title-dark,
  .home-waveout-title-blue {
    font-size: 32px;
  }

  .home-waveout-logo-horizontal {
    height: 32px;
    width: auto;
    max-width: min(292.989px, 100%);
  }

  .home-waveout-body p {
    font-size: 20px;
  }

  .home-waveout-body p + p {
    margin-top: 14px;
  }

  .home-waveout-downloads {
    gap: 16px;
    max-width: none;
  }

  .home-waveout-stores {
    flex-wrap: wrap;
    gap: 16px;
  }

  .home-waveout-stores .home-waveout-store img {
    height: 48px;
    width: auto;
    max-width: 100%;
  }

  .home-logo-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    margin-top: 40px;
  }

  .home-strategic-rows {
    margin-top: 40px;
    gap: 20px;
  }

  .home-strategic-row-4,
  .home-strategic-row-3,
  .home-strategic-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }

  .home-strategic-logo,
  .home-strategic-logo img,
  .home-strategic-logo p {
    width: 100%;
  }

  .home-team-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    margin-top: 40px;
  }

  .home-team-card {
    width: 100%;
  }

  .home-team-copy {
    max-width: none;
  }

  .home-awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .home-logo-section h2,
  .home-team h2,
  .home-awards h2 {
    font-size: 32px;
  }

  .home-logo-section p,
  .home-team > .container > p,
  .home-team-lead,
  .home-awards > .container > p {
    font-size: 20px;
  }
}
