@font-face {
  font-family: "Lithos Poppins";
  src: url("../fonts/poppins-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lithos Poppins";
  src: url("../fonts/poppins-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lithos Poppins";
  src: url("../fonts/poppins-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lithos Poppins";
  src: url("../fonts/poppins-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lithos Poppins";
  src: url("../fonts/poppins-extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #fed803;
  --blue: #0c27a0;
  --nav-gray: rgba(137, 137, 137, 0.55);
  --nav-dark: rgba(10, 10, 10, 0.48);
  --text: #090909;
  --container: 868px;
  --wide-container: 954px;
  --nav-width: 872px;
  --header-top: 25px;
  --shape-h: 116px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Lithos Poppins", "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100000;
  transform: translateY(-140%);
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: var(--header-top);
  left: 50%;
  z-index: 7000;
  width: min(var(--nav-width), calc(100vw - 48px));
  height: 68px;
  transform: translateX(-50%);
  border-radius: 999px;
  overflow: hidden;
  background: var(--nav-gray);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.site-header.is-over-media {
  background: var(--nav-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 44px 0 32px;
}

.brand {
  color: var(--white);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--yellow);
}

.mobile-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 3px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 48px;
  right: 56px;
  width: 64px;
  height: 64px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.mobile-close::before,
.mobile-close::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 2px;
  width: 60px;
  height: 4px;
  background: currentColor;
  border-radius: 4px;
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.mobile-menu nav {
  display: grid;
  gap: 66px;
  text-align: center;
}

.mobile-menu a {
  color: var(--white);
  font-size: clamp(48px, 8vw, 74px);
  font-weight: 800;
  line-height: 0.9;
  text-shadow: 2px 1px 0 rgba(254, 216, 3, 0.45), -2px -1px 0 rgba(0, 231, 255, 0.35);
}

.privacy-float {
  position: fixed;
  left: 36px;
  bottom: 36px;
  z-index: 6500;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.privacy-float svg {
  width: 36px;
  height: 36px;
}

.section {
  position: relative;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
}

.content-wide {
  width: min(var(--wide-container), calc(100vw - 48px));
}

.angle-bottom-white::after,
.angle-bottom-yellow::after,
.angle-bottom-black::after,
.angle-top-white::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: var(--shape-h);
  pointer-events: none;
}

.angle-bottom-white::after {
  bottom: -1px;
  background: var(--white);
  clip-path: polygon(0 43%, 31% 64%, 56% 25%, 78% 46%, 100% 34%, 100% 100%, 0 100%);
}

.angle-bottom-yellow::after {
  bottom: -1px;
  background: var(--yellow);
  clip-path: polygon(0 42%, 29% 62%, 53% 25%, 76% 48%, 100% 35%, 100% 100%, 0 100%);
}

.angle-bottom-black::after {
  bottom: -1px;
  background: var(--black);
  clip-path: polygon(0 36%, 26% 54%, 50% 77%, 72% 50%, 98% 32%, 100% 100%, 0 100%);
}

.angle-top-white::before {
  top: -1px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 82% 50%, 65% 18%, 47% 52%, 26% 34%, 0 60%);
}

.hero-home {
  min-height: 860px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.2)), url("../images/hero-earth.jpg");
  background-size: cover;
  background-position: center;
}

.hero-home .hero-title {
  position: absolute;
  left: max(24px, calc(50% - 174px));
  top: 420px;
  z-index: 2;
  width: min(520px, calc(100vw - 48px));
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.9;
}

.hero-title .light {
  display: block;
  font-size: clamp(32px, 2.45vw, 42px);
  font-weight: 300;
}

.hero-title .heavy {
  display: block;
  font-size: clamp(33px, 2.5vw, 43px);
  font-weight: 800;
}

.about-section {
  min-height: 760px;
  padding: 218px 0 178px;
  background: var(--white);
}

.title-xl {
  margin: 0 0 26px;
  color: var(--black);
  font-size: clamp(72px, 6.7vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.copy-lg {
  margin: 0 0 31px;
  color: #151515;
  font-size: clamp(17px, 1.21vw, 21px);
  font-weight: 300;
  line-height: 1.47;
}

.yellow-section {
  min-height: 808px;
  padding: 274px 0 196px;
  background: var(--yellow);
}

.yellow-section .content {
  width: min(870px, calc(100vw - 48px));
}

.sectors-section {
  padding: 169px 0 176px;
  background: var(--white);
}

.title-md {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(38px, 3.05vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.sectors-intro {
  margin-bottom: 32px;
}

.feature-list {
  display: grid;
  gap: 41px;
  max-width: 795px;
  margin-top: 26px;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 11px;
  align-items: start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #000;
}

.feature-icon.blue {
  color: #16115e;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon .filled {
  fill: currentColor;
  stroke: none;
}

.feature-item h3 {
  margin: 4px 0 12px;
  color: var(--black);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
}

.feature-item p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.video-section {
  min-height: 770px;
  padding: 268px 0 205px;
  color: var(--white);
  background: var(--black);
}

.video-section video,
.video-section .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .video-fallback {
  background: url("../images/video-poster.jpg") center / cover no-repeat;
}

.video-top-cut {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  height: var(--shape-h);
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 82% 50%, 65% 18%, 47% 52%, 26% 34%, 0 60%);
  pointer-events: none;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.46);
}

.video-section .content {
  width: min(742px, calc(100vw - 48px));
  margin-left: max(24px, calc(50% - 371px));
}

.video-section .title-md,
.video-section .copy-lg {
  color: var(--white);
}

.partnerships-section {
  padding: 165px 0 250px;
  background: var(--white);
}

.button-pill {
  display: inline-grid;
  place-items: center;
  min-width: 218px;
  min-height: 53px;
  padding: 0 30px;
  margin-top: 24px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.button-pill:hover,
.button-pill:focus-visible {
  background: var(--black);
  color: var(--white);
}

.page-hero {
  min-height: 414px;
  padding-top: 150px;
  display: grid;
  place-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.contact-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)), url("../images/contact-city.jpg");
}

.page-hero h1 {
  margin: 15px 0 0;
  font-size: clamp(78px, 7.4vw, 125px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.contact-form-section {
  padding: 84px 0 190px;
  background: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 30px;
}

.field {
  display: grid;
  gap: 22px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 39px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid #414141;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--black);
  box-shadow: 0 1px 0 var(--black);
}

.submit-pill {
  grid-column: 1 / -1;
  min-height: 45px;
  margin-top: -6px;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.submit-pill:hover,
.submit-pill:focus-visible {
  background: var(--black);
  color: var(--white);
}

.terms-main {
  padding: 156px 0 87px;
  background: var(--white);
}

.terms-main .content {
  width: min(880px, calc(100vw - 48px));
}

.terms-main h1 {
  margin: 0 0 38px;
  color: var(--black);
  font-size: clamp(82px, 7.4vw, 126px);
  font-weight: 800;
  line-height: 0.93;
  text-transform: uppercase;
}

.legal-copy {
  color: #151515;
  font-size: 20px;
  line-height: 1.42;
}

.legal-copy p {
  margin: 0 0 30px;
}

.legal-copy ul {
  margin: 0 0 30px 32px;
  padding: 0;
}

.legal-copy li {
  margin: 0 0 4px;
}

.site-footer {
  position: relative;
  z-index: 2;
  min-height: 475px;
  padding: 126px 0 42px;
  background: var(--black);
  color: var(--white);
}

.site-footer.angled {
  margin-top: -112px;
  padding-top: 187px;
  clip-path: polygon(0 0, 18% 18%, 50% 0, 72% 20%, 100% 6%, 100% 100%, 0 100%);
}

.footer-inner {
  width: min(948px, calc(100vw - 48px));
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 33px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr 1fr;
  gap: 54px;
}

.footer-block h2 {
  margin: 0 0 23px;
  font-size: 19px;
  font-weight: 800;
}

.footer-block p,
.footer-block a {
  display: block;
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.footer-block a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-top: 86px;
  font-size: 12px;
  line-height: 1;
}

.techfob {
  font-size: 8px;
  opacity: 0.92;
}

.techfob strong {
  font-size: 9px;
  font-weight: 800;
}

.copyright {
  justify-self: end;
  font-size: 13px;
}

.thank-you {
  min-height: 70vh;
  padding: 190px 0 120px;
}

.thank-you h1 {
  margin: 0 0 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-top: 18px;
  }

  .site-header {
    width: min(760px, calc(100vw - 32px));
  }

  .site-nav {
    padding: 0 30px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-home {
    min-height: 780px;
  }

  .hero-home .hero-title {
    left: max(32px, calc(50% - 230px));
    top: 365px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-top: 4px;
    --shape-h: 72px;
  }

  .site-header {
    width: calc(100vw - 8px);
    height: 30px;
    border-radius: 16px;
    box-shadow: none;
  }

  .site-nav {
    padding: 0 8px;
  }

  .brand {
    font-size: 13px;
    font-weight: 800;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
    width: 28px;
    height: 28px;
  }

  .mobile-toggle span,
  .mobile-toggle::before,
  .mobile-toggle::after {
    width: 15px;
    height: 1.5px;
    margin: 3px auto;
  }

  .mobile-close {
    top: 50px;
    right: 40px;
  }

  .mobile-menu nav {
    gap: 56px;
  }

  .mobile-menu a {
    font-size: 54px;
  }

  .privacy-float {
    left: 28px;
    bottom: 26px;
    width: 52px;
    height: 52px;
  }

  .privacy-float svg {
    width: 30px;
    height: 30px;
  }

  .content,
  .content-wide,
  .yellow-section .content,
  .video-section .content,
  .terms-main .content,
  .footer-inner {
    width: calc(100vw - 56px);
  }

  .hero-home {
    min-height: 307px;
    background-position: center top;
  }

  .hero-home .hero-title {
    left: 14px;
    top: 92px;
    width: 310px;
  }

  .hero-title .light,
  .hero-title .heavy {
    font-size: 25px;
  }

  .about-section {
    min-height: auto;
    padding: 84px 0 87px;
  }

  .title-xl {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1;
  }

  .copy-lg {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.43;
  }

  .yellow-section {
    min-height: auto;
    padding: 84px 0 100px;
  }

  .sectors-section {
    padding: 78px 0 116px;
  }

  .title-md {
    margin-bottom: 13px;
    font-size: 31px;
    line-height: 1.02;
  }

  .feature-list {
    gap: 35px;
    margin-top: 25px;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
  }

  .feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .feature-item h3 {
    margin: 5px 0 10px;
    font-size: 15px;
  }

  .feature-item p {
    font-size: 12px;
    line-height: 1.42;
  }

  .video-section {
    min-height: auto;
    padding: 105px 0 118px;
  }

  .video-section video {
    display: none;
  }

  .video-section::before {
    background: rgba(0, 0, 0, 0.72);
  }

  .partnerships-section {
    padding: 85px 0 156px;
  }

  .button-pill {
    min-width: 160px;
    min-height: 31px;
    margin-top: 8px;
    font-size: 10px;
    border-width: 1.5px;
  }

  .page-hero {
    min-height: 290px;
    padding-top: 75px;
    background-position: center top;
  }

  .page-hero h1 {
    margin-top: 23px;
    font-size: 44px;
  }

  .contact-form-section {
    padding: 52px 0 206px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .field {
    gap: 22px;
  }

  .field label {
    font-size: 16px;
  }

  .field input,
  .field textarea {
    min-height: 34px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 108px;
  }

  .submit-pill {
    min-height: 51px;
    font-size: 16px;
  }

  .terms-main {
    padding: 39px 0 52px;
  }

  .terms-main h1 {
    margin-bottom: 7px;
    font-size: 34px;
    line-height: 0.9;
  }

  .legal-copy {
    font-size: 11px;
    line-height: 1.42;
  }

  .legal-copy p {
    margin-bottom: 20px;
  }

  .legal-copy ul {
    margin: 0 0 20px 20px;
  }

  .site-footer {
    min-height: 612px;
    padding: 55px 0 30px;
  }

  .site-footer.angled {
    margin-top: -87px;
    padding-top: 132px;
    clip-path: polygon(0 0, 18% 23%, 52% 49%, 100% 0, 100% 100%, 0 100%);
  }

  .footer-brand {
    margin-bottom: 32px;
    font-size: 31px;
  }

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

  .footer-block h2 {
    margin-bottom: 18px;
    font-size: 21px;
  }

  .footer-block p,
  .footer-block a {
    font-size: 17px;
    line-height: 1.42;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    margin-top: 43px;
  }

  .copyright {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .mobile-menu a {
    font-size: 48px;
  }

  .footer-block p,
  .footer-block a {
    font-size: 15px;
  }
}
