@import url('https://fonts.googleapis.com/css2?family=Literata:wght@600;700&family=Open+Sans:wght@400;600;700;800&display=swap');

:root {
  --black: #000;
  --white: #fff;
  --aqua: #72f7ff;
  --deep-teal: #0b5358;
  --content: min(1120px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: #72f7ff;
  text-decoration: none;
}

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

.hero {
  min-height: 870px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.82) 91%, #000 100%),
    url('../images/AdobeStock_659689292.jpeg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: 50px;
}

.hero-inner {
  width: var(--content);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 870px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.logo {
  width: 175px;
  margin-left: -18px;
}

.menu-icon {
  display: none;
  position: absolute;
  right: 22px;
  top: 33px;
  width: 31px;
  height: 24px;
}

.menu-icon span {
  display: block;
  height: 3px;
  margin-bottom: 7px;
  border-radius: 20px;
  background: var(--aqua);
}

.menu-icon span:nth-child(1) { width: 31px; margin-left: 0; }
.menu-icon span:nth-child(2) { width: 24px; margin-left: 0; }
.menu-icon span:nth-child(3) { width: 15px; margin-left: 0; }

.hero-copy {
  margin-top: 335px;
  max-width: 980px;
}

h1 {
  margin: 0;
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.hero-copy p {
  margin: 22px 0 36px;
  font-size: 22px;
  letter-spacing: -.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 54px;
  padding: 16px 28px;
  background: #8cf8ff;
  color: #050505;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.about {
  min-height: 720px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 74%, #000 100%),
    url('../images/AdobeStock_1245929180.jpeg');
  background-size: cover;
  background-position: center center;
  padding-top: 215px;
}

.about-card {
  width: min(760px, calc(100vw - 48px));
  color: #050505;
  text-align: center;
}

.section-title {
  margin: 0 0 30px;
  color: var(--deep-teal);
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.about-card p {
  margin: 0 auto 30px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.coming-soon {
  margin-top: 28px;
  color: #020202;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.partner {
  background: #000;
  padding: 95px 0 185px;
}

.partner-inner {
  width: var(--content);
  margin: 0 auto;
}

.partner .section-title {
  color: #fff;
  font-size: 38px;
  margin-bottom: 55px;
}

.partner .section-title span { color: var(--aqua); }

.partner-copy {
  max-width: 940px;
  font-size: 15px;
  color: rgba(255,255,255,.88);
}

.partner-copy p { margin: 0 0 28px; }
.partner-copy strong { color: #fff; }
.partner-copy ul { margin: 0 0 28px 22px; padding: 0; }
.partner-copy li { margin: 3px 0; }

.bottom-image {
  min-height: 515px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 62%, #000 100%),
    url('../images/AdobeStock_687104879.jpeg');
  background-size: cover;
  background-position: center center;
}

footer {
  background: #000;
  text-align: center;
  padding: 65px 20px 58px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  letter-spacing: .02em;
}

.credit {
  margin-top: 55px;
  font-size: 11px;
  letter-spacing: .38em;
  line-height: 2.2;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  :root { --content: calc(100vw - 44px); }

  .hero {
    min-height: 505px;
    background-size: auto 505px;
    background-position: center top;
  }

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

  .logo { width:125px; }
  .menu-icon { display: block; }

  .hero-copy {
    margin-top: 270px;
    max-width: 315px;
  }

  h1 {
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.02em;
  }

  .hero-copy p {
    margin: 18px 0 23px;
    font-size: 16px;
    line-height: 1.55;
  }

  .button {
    min-width: 163px;
    min-height: 45px;
    padding: 12px 20px;
    font-size: 13px;
  }

  .about {
    min-height: 740px;
    padding-top: 185px;
    background-size: auto 740px;
    background-position: center top;
  }

  .about-card {
    width: calc(100vw - 52px);
  }

  .section-title {
    font-size: 20px;
    letter-spacing: .22em;
    margin-bottom: 18px;
  }

  .about-card p {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .coming-soon {
    max-width: 285px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: .28em;
  }

  .partner {
    padding: 42px 0 56px;
  }

  .partner .section-title {
    font-size: 20px;
    letter-spacing: .22em;
    margin-bottom: 22px;
  }

  .partner-copy {
    max-width: 310px;
    font-size: 14px;
    line-height: 1.55;
  }

  .partner-copy p { margin-bottom: 22px; }
  .partner-copy ul { margin: 0 0 22px 20px; }
  .partner-copy li { margin: 2px 0; }

  .bottom-image {
    min-height: 160px;
    background-size: auto 160px;
    background-position: center center;
  }

  footer {
    padding: 43px 20px 66px;
    font-size: 12px;
  }

  .credit {
    margin-top: 82px;
    font-size: 10px;
    letter-spacing: .34em;
  }
}