:root {
  --blue-light: #a5c8f3;
  --blue-mid: #639add;
  --blue-dark: #2f77cf;
  --blue-very-dark: #133a69;
  --blue-very-light: #cbdff7;
  --blue-panel: rgba(203, 223, 247, .9);
  --black-25: rgba(0, 0, 0, .25);
  --accent-font: "Cinzel", serif;
  --main-font: "Exo", sans-serif;
  --body-font: "Montserrat", Arial, sans-serif;
  --radius-large: 50px;
  --radius-small: 5px;
  --max-width: 940px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #133a69;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 10px;
  background: #000;
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 30px));
  height: 62px;
  margin: 0 auto;
  padding-right: 15px;
  overflow: hidden;
  border-right: 1px solid var(--blue-light);
  border-bottom: 1px solid var(--blue-light);
  border-left: 1px solid var(--blue-light);
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .1));
  backdrop-filter: blur(5px);
}

.brand {
  float: left;
  width: 80px;
  height: 40px;
}

.brand img {
  width: 60px;
  height: 30px;
  margin-top: 10px;
  margin-left: 20px;
}

.site-menu {
  float: right;
}

.language-selector {
  float: right;
  margin: 14px 14px 0 0;
}

.language-selector select {
  height: 34px;
  padding: 4px 28px 4px 10px;
  border: 1px solid rgba(165, 200, 243, .85);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, .5);
  color: var(--blue-light);
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 5px #000;
}

.language-selector select:focus {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-link {
  display: inline-block;
  width: 120px;
  padding: 20px;
  border-radius: 0 0 var(--radius-small) var(--radius-small);
  color: var(--blue-light);
  font-family: var(--main-font);
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 5px #000;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 500px;
  margin-top: 10px;
  padding-top: 40px;
  overflow: hidden;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 700;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.hero-inner::after {
  content: "";
  display: block;
  clear: both;
}

.hero-logo {
  float: left;
  width: 55%;
  padding: 20px 20px 0;
  animation: hero-logo-enter 2s ease-out 2s both;
  transform-origin: top left;
  will-change: opacity, transform;
}

.hero-logo img {
  width: 400px;
  height: 170px;
  padding-left: 60px;
}

.hero h1 {
  float: right;
  width: 45%;
  margin: 20px 0 0;
  padding-left: 20px;
  color: #fff;
  font-family: var(--accent-font);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px var(--blue-light);
}


.hero-kicker {
  clear: both;
  margin: 700px 0 0;
  padding: 100px 20px;
  color: var(--blue-light);
  font-family: var(--accent-font);
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: .25em;
  line-height: 1.15;
  text-align: center;
  text-shadow: 0 0 10px #cadcf1;
}

@keyframes hero-logo-enter {
  from {
    opacity: 0;
    transform: translate(-80px, -60px) scale(0);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo {
    animation: none;
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

.content-gradient {
  min-height: auto;
  margin-top: -10px;
  padding-bottom: 40px;
  background: linear-gradient(200deg, #000 20%, var(--blue-light) 50%, #fff 75%);
}

.cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-50px);
}

.btn {
  display: inline-flex;
  align-items: center;
  width: 250px;
  height: 50px;
  padding: 9px 18px;
  font-family: var(--accent-font);
  font-size: 1.5em;
  line-height: 1;
  transition: transform .18s ease;
}

.btn-contact {
  justify-content: flex-end;
  border-radius: 50% var(--radius-small) var(--radius-small) 50%;
  background: linear-gradient(180deg, var(--blue-dark), var(--blue-mid) 29%, var(--blue-dark) 63%, var(--blue-very-dark));
  color: #fff;
}

.btn-learn {
  justify-content: flex-start;
  border-radius: var(--radius-small) 50% 50% var(--radius-small);
  background: linear-gradient(0deg, var(--blue-dark), var(--blue-mid) 8%, var(--blue-light) 74%, var(--blue-very-light));
  color: #000;
}

.btn-contact:hover {
  transform: translateX(-20px);
}

.btn-learn:hover {
  transform: translateX(20px);
}

.main-panel {
  width: calc(100% - 100px);
  background: var(--blue-panel);
  box-shadow: 0 0 10px 0 var(--blue-dark), 0 0 5px 0 var(--black-25);
}

.main-panel-left {
  margin: 10px 100px 40px -10px;
  padding: 0 20px 40px 120px;
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
}

.main-panel-right {
  margin: 10px 0 40px 100px;
  padding: 40px 120px 40px 20px;
  border-radius: var(--radius-large) 0 0 var(--radius-large);
}

.panel-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 45px 20px 0;
}

.main-panel-right .panel-inner {
  padding-top: 0;
}

.main-panel h2 {
  margin: 0 0 20px;
  color: var(--blue-very-dark);
  font-family: var(--accent-font);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.text-columns {
  column-count: 1;
}

.main-panel p {
  margin: 0 0 20px;
  color: var(--blue-very-dark);
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 1.2;
}


.product-story {
  width: min(1180px, calc(100% - 40px));
  margin: 10px auto 0;
  padding: 20px 0 90px;
}

.product-story-heading {
  width: min(760px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.eyebrow,
.product-status {
  color: var(--blue-dark);
  font-family: var(--main-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-story h2 {
  margin: 8px 0 16px;
  color: var(--blue-very-dark);
  font-family: var(--accent-font);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
}

.product-story-heading > p:last-child,
.roadmap-note {
  color: var(--blue-very-dark);
  font-family: var(--main-font);
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid  --blue-light;
  border-radius:var(--radius-large);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 0 10px 0 var(--blue-dark), 0 0 5px 0 var(--black-25);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-copy {
  padding: 24px;
}

.product-card h3 {
  margin: 8px 0 14px;
  color: var(--blue-very-dark);
  font-family: var(--accent-font);
  font-size: 22px;
  line-height: 1.2;
}

.product-card-copy > p:last-child {
  margin: 0;
  color: #243b55;
  font-family: var(--main-font);
  font-size: 15px;
  line-height: 1.45;
}

.roadmap-note {
  margin: 34px auto 0;
  font-weight: 600;
  text-align: center;
}

.about-section {
  padding: 0 0 0;
  background: #fff;
  text-align: center;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(920px, 95vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  box-shadow: 0 0 10px 0 var(--black-25), 0 2px 5px 0 var(--black-25);
}

.about-images {
  display: flex;
  height: 230px;
}

.about-image {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.about-pointing {
  border-top-left-radius: var(--radius-large);
}

.about-founders {
  border-top-right-radius: var(--radius-large);
}

.about-copy {
  min-height: 250px;
  padding: 10px 10px 16px;
  background: var(--blue-dark);
}

.about-copy h2 {
  margin: 10px 0;
  color: var(--blue-very-light);
  font-family: var(--accent-font);
  font-size: 28px;
  line-height: 1.2;
}

.about-copy p {
  margin: 0 auto 10px;
  color: var(--blue-very-light);
  font-family: var(--main-font);
  font-size: 14px;
  line-height: 1.1;
}

.footer {
  padding: 40px 0;
  background: var(--blue-dark);
  box-shadow: 0 0 10px 0 var(--black-25), 0 2px 5px 0 var(--black-25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .9fr .9fr 1.5fr;
  gap: 20px;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 20px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: var(--blue-light);
  font-family: var(--accent-font);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-brand {
  width: 200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand img {
  width: 200px;
  height: 100px;
}

.footer-brand p {
  margin: 10px 0;
  color: var(--blue-very-light);
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 900px) {
  .text-columns {
    column-count: 1;
    column-gap: 34px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 25px;
    overflow: visible;
  }

  .nav-shell {
    position: relative;
    overflow: visible;
    height: 50px;
    border: 0;
    border-right: 1px solid var(--blue-light);
    border-bottom: 1px solid var(--blue-light);
    border-left: 1px solid var(--blue-light);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
  }

  .brand img {
    width: 60px;
    height: 30px;
    margin-top: 10px;
    margin-left: 31px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    float: right;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    width: 38px;
    height: 56px;
    margin: -3px 1px 0 0;
    padding: 8px 5px;
    border: 0;
    background: transparent;
    color: var(--blue-light);
    cursor: pointer;
  }

  .language-selector {
    position: relative;
    z-index: 3;
    margin: 8px 9px 0 0;
  }

  .language-selector select {
    width: 54px;
    height: 32px;
    padding: 3px 6px;
    font-size: 13px;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: var(--blue-light);
    box-shadow: 0 0 5px #000;
    transition: opacity .18s ease, transform .18s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-menu {
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 2;
    display: none;
    float: none;
    padding: 7px 18px 16px;
    border-bottom: 1px solid var(--blue-light);
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(3px);
    text-align: right;
  }

  .site-menu.is-open {
    display: block;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 11px 20px;
    text-align: right;
  }

  .hero {
    height: 540px;
    margin-top: 25px;
  }

  .hero-video {
    object-position: 52% 50%;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-logo {
    width: 63%;
    margin-top: 87px;
    padding: 0 0 0 10px;
  }

  .hero-logo img {
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .hero h1 {
    width: 37%;
    margin: 87px 26px 0 0;
    padding: 0 0 0 20px;
    font-size: 21px;
    line-height: 1.3;
    text-align: right;
  }

  .hero-kicker {
    margin-top: 430px;
    padding: 24px 10px 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
  }

  .content-gradient {
    min-height: auto;
  }

  .cta-row {
    gap: 20px;
    width: 100%;
    padding: 0 35px;
    transform: translateY(-40px);
  }

  .btn {
    width: 200px;
    height: 50px;
    font-size: 1em;
    line-height: 1em;
  }

  .main-panel {
    width: auto;
    height: auto;
  }

  .main-panel-left {
    margin: 10px 20px 10px 0;
    padding: 0 20px 40px;
    box-shadow: 0 0 10px 0 var(--black-25), 0 0 5px 0 var(--black-25);
  }

  .main-panel-right {
    margin: 10px 0 10px 20px;
    padding: 0 20px 40px;
    box-shadow: 0 0 10px 0 var(--black-25), 0 0 5px 0 var(--black-25);
  }

  .panel-inner,
  .main-panel-right .panel-inner {
    padding: 55px 28px 0;
  }

  .main-panel h2 {
    margin: 0 0 20px;
    color: var(--blue-very-dark);
    font-family: var(--accent-font);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }

  .main-panel p {
    font-size: 13px;
  }

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

  .about-card {
    width: 95vw;
  }

  .about-images {
    flex-direction: column;
    height: auto;
  }

  .about-image {
    width: 100%;
    height: auto;
    border-radius: 0;
  }

  .about-copy {
    min-height: 250px;
  }

  .about-copy p {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 24px 28px 12px;
  }

  .footer-grid > div:empty {
    display: none;
  }
}

@media (max-width: 374px) {
  .cta-row {
    gap: 10px;
    padding: 0 18px;
  }

  .btn {
    width: 200px;
  }
}
