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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

@font-face {
  font-family: "Gambetta";
  src: url("../fonts/Gambetta-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Coconat";
  src: url("../fonts/Coconat-Regular.woff2") format("woff2");
}

:root {
  font-size: 16px;
  --color-text: #0e0122;
  --color-bg: #000313;
  --color-link: #fff;
  --color-link-hover: #fff;
  --page-padding: 1rem 2rem;
  --color-gradient: linear-gradient(220deg, #504cff, #f0459a, #ffbc5e);
  --line-color: #0e0122;

  @media screen and (max-width: 1040px) {
    --page-padding: 1rem;
  }
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: "Onest", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,
    Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: url(../img/noise.png),
    linear-gradient(0deg, #eef3ff 0%, #e4e6ff 100%);
  background-size: 150px, 100% 100vh;
  background-attachment: fixed;
}

.color-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, hsl(225, 69%, 15%) 0%, #01000b 50%);
  background-size: 100%;
  pointer-events: none;

  img {
    width: 100%;
    mix-blend-mode: screen;
    height: 100%;
    opacity: 0.8;
  }
}

h1 {
  z-index: 1;
  font-family: "Gambetta";
  font-weight: 300;
  font-size: clamp(35px, 6vw, 70px);
  position: absolute;
  bottom: 0;
}

header {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  position: fixed;
  background-color: var(--color-bg);

  .header-content {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: var(--page-padding);
    max-width: 1280px;

    nav {
      display: flex;
      gap: 10px;
    }

    hr {
      position: absolute;
      bottom: 0;
      width: calc(100% - 4rem);
      mix-blend-mode: difference;
      border: none;
      border-bottom: solid 1px white;
      margin: 0 auto;
      max-width: calc(1280px - 4rem);
    }
  }
}

hr {
  width: 100%;
  mix-blend-mode: difference;
  border: none;
  border-bottom: solid 1px white;
}

.link-btn {
  border: solid 1px var(--color-link);
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  width: fit-content;
  display: flex;
  text-transform: uppercase;
  font-family: "Onest", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,
    Arial, sans-serif;

  &.colored {
    margin: 2rem;
    margin-top: 0;
    color: #2b7395;
    mix-blend-mode: difference;
    border-color: #2b7395;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 60px;
    width: calc(100% - 4rem);
  }

  @media screen and (max-width: 1040px) {
    font-size: 14px;
    padding: 8px 18px;
  }

  &:hover {
    background-color: white;
    color: black;
    border-color: black;
  }
}

.logo {
  width: 100px;
  z-index: 1;
}

text {
  color: var(--color-link);
  mix-blend-mode: exclusion;
  white-space: nowrap;
}

.sky-link {
  color: #504cff;
  background-image: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  &:hover {
    background-image: linear-gradient(#fff, #fff);
  }
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
  cursor: pointer;
  position: relative;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  /* Provide a fallback style for browsers
	 that don't support :focus-visible */
  outline: none;
  background: lightgrey;
}

a:focus:not(:focus-visible) {
  /* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
  background: transparent;
}

a:focus-visible {
  /* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
  outline: 2px solid red;
  background: transparent;
}

.unbutton {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.unbutton:focus {
  outline: none;
}

.content {
  padding: var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  min-height: fit-content;
}

footer {
  display: flex;
  width: 100%;
  background-color: var(--color-bg);
  color: white;
  margin-top: 1rem;

  .footer-content {
    padding: var(--page-padding);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    min-height: 250px;
    height: fit-content;

    .wrapper {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 20px;
      font-weight: 200;
      text-transform: none;
    }

    p {
      margin: 0;
    }

    .meta {
      display: block;
      color: var(--color-link);
      border-color: var(--color-link);
    }

    .copyright {
      color: #ffffff;
      text-transform: none;
      font-size: 13px;
      opacity: 0.5;
      font-weight: 300;
    }
  }
}

h2 {
  grid-area: type;
  font-family: "Coconat";
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 5rem);
  text-transform: none;
  font-weight: normal;
  line-height: clamp(2.9rem, 4vw, 5.3rem);
}

h4 {
  grid-area: type;
  font-family: "Gambetta";
  margin: 0;
  font-size: 20pt;
  text-transform: none;
  font-weight: 200;
  width: 100%;
}

h3 {
  display: inline-block;
  font-size: 18px;
  font-family: "Onest", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,
    Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: var(--line-color);

  &.meta {
    margin-bottom: 10px;
    border-bottom: solid 1px var(--line-color);
    padding: 10px 0;
    display: block;
  }
}

.subtitle {
  font-family: "Onest", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,
    Arial, sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  padding: 2rem;
  padding-bottom: 0;
  color: #2b7395;
  max-width: 500px;
  mix-blend-mode: difference;

  @media screen and (max-width: 1040px) {
    font-size: 2rem;
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  flex-direction: row;
  margin-bottom: 1rem;

  @media screen and (max-width: 1040px) {
    flex-direction: column;
    transform: translateY(-19px);
    gap: 3rem;
    margin-bottom: 0;
  }

  li:before {
    content: "";
    display: inline-block;
    /* width: 49px;
		border-top: solid 1px #00957e;
		transform: translate(3rem, 19px); */
    border-left: #00957e solid 1px;
    height: 31px;
    transform: translateX(1rem);

    @media screen and (max-width: 1040px) {
      border: none;
      border-top: solid 1px #00957e;
      width: 31px;
      height: 0px;
      transform: translate(1.9rem, 19px);
    }
  }

  li {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 1rem;

    @media screen and (max-width: 1040px) {
      margin-left: 0;
      align-items: flex-end;
      text-align: right;
    }
  }
}

p {
  margin: 8px 0;
  font-size: 20px;
  font-family: "Onest", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,
    Arial, sans-serif;
  font-weight: 300;
  text-transform: none;
  opacity: 0.5;

  @media screen and (max-width: 1040px) {
    font-size: 18px;
  }
}

.hero {
  height: 100vh;

  .type {
    max-width: 80vw;
    padding-top: 15vh;
  }
}

.type__expand--center {
  display: block;
  width: 100%;
  min-width: 100%;

  .type__expand-img {
    width: 400px;
    height: 100%;
  }

  .type__expand-img-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
  }
}

.type__expand--full {
  display: flex;
  align-items: flex-end;
}

.type__expand--mini {
  display: flex;
  justify-content: flex-start;
  height: 0%;

  &.end {
    justify-content: flex-end;
  }
}

.type--open .type__expand {
  gap: 1.5rem;
}

.type--open .type__expand--stack {
  gap: 0.5rem;
  padding: 0 0 1rem 0;
}

.type--open .type__expand--stack:has(.type__expand-img:first-child) {
  padding: 1rem 0 0 0;
}

.type__expand-img {
  display: block;
  position: relative;
  width: 0%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4rem;

  @media screen and (max-width: 1040px) {
    border-radius: 3rem;
  }
}

.type__expand-img.wide {
  aspect-ratio: 25/9;

  @media screen and (max-width: 1040px) {
    aspect-ratio: 4/5;
  }

  .type__expand-img-inner {
    flex-direction: row;

    @media screen and (max-width: 1040px) {
      flex-direction: column;
    }
  }

  .subtitle {
    color: #3e1a93;
    mix-blend-mode: normal;
  }
}

.sky-logo {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  flex: 1;

  img {
    width: 100%;
    height: 80%;
    transform: translateY(120px);

    @media screen and (max-width: 1040px) {
      transform: translateY(0px);
    }
  }
}

.type__expand-text.right {
  display: block;
  position: relative;
  width: 0%;
  height: 0px;
  overflow: hidden;
  transform: none !important;
}

.type__expand-button {
  display: block;
  position: relative;
  width: 0%;
  height: 0%;
  overflow: hidden;
  border-radius: 4rem;

  @media screen and (max-width: 1040px) {
    border-radius: 1rem;
  }
}

.type__expand-img-inner {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img-wide {
  height: 100%;
}

.type__expand-img--center {
  justify-self: center;
  align-self: center;
}

.type__expand-img--small {
  aspect-ratio: 1;
}

.type__expand-img--tiny {
  aspect-ratio: auto;
}

.type--open .type__expand-img {
  width: 100%;
  height: 100%;
}

.type--open .type__expand-text {
  width: 100%;
  max-width: 600px;
  height: 100%;
}

.type--open .type__expand--full {
  width: 50vw;
  min-width: 100%;
}

.type--open .type__expand-button {
  width: 100%;
  height: 100%;
}

.type--open .closed {
  height: 0%;
}

.type--open .type__expand-img--small {
  width: 3.25em;
}

.type--open .type__expand-img--tiny {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.type--open .type__expand-img.stretch {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;

  @media screen and (max-width: 1040px) {
    aspect-ratio: 1/1;
  }
}

.content--left {
  align-items: start;
}

.content--center {
  align-items: center;
  text-align: center;
}

.content--right {
  padding: var(--page-padding);
  margin-left: auto;
  height: fit-content;
  min-height: 40vh;
  justify-content: flex-start;

  @media screen and (max-width: 1280px) {
    position: relative;
  }
}

.bg-color {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #c2b7ff 100%);
  z-index: -1;
  mix-blend-mode: multiply;
}

.roadmap-wrapper {
  width: 100%;
  display: flex;
  border-radius: 4rem;
  background-size: 200px, 100% 100vh;
  background-attachment: fixed;
  padding: 2rem;
  flex-direction: column;

  @media screen and (max-width: 1040px) {
    flex-direction: row-reverse;
    border-radius: 3rem;
    padding: 3rem 1rem;
  }

  h4 {
    width: 100%;

    @media screen and (max-width: 1040px) {
      margin: 0 30px 0 1rem;
    }
  }

  h3 {
    color: #00957e;
    border: solid 1px #00957e;
    padding: 0.5rem 1rem;
    width: fit-content;
    border-radius: 2rem;
    font-size: 14px;
    margin-bottom: 10px;
    width: 94px;
    transform: translateX(-1rem);

    @media screen and (max-width: 1040px) {
      transform: none;
    }
  }
}

.roadmap {
  border-bottom: solid 1px #00957e;
  width: calc(100% - 3rem);
  padding-bottom: 1rem;
  transform: translateX(2rem);

  @media screen and (max-width: 1040px) {
    transform: none;
    border: none;
    padding: none;
    border-left: solid 1px #00957e;
    width: fit-content;
  }

  .subtitle {
    color: #00957e;
    mix-blend-mode: normal;
    padding: 0;

    @media screen and (max-width: 1040px) {
      text-orientation: mixed;
      writing-mode: vertical-rl;
      width: 57px;
    }
  }
}

.content--justify {
  justify-content: flex-end;
}

.content--line {
  width: 100%;
  flex: 1;

  &.text {
    flex: 1;
    margin: 1rem 0rem;
  }

  p {
    text-align: left;
    margin: 1rem 3rem;
    max-width: 70%;

    @media screen and (max-width: 1040px) {
      margin: 1rem 2rem;
      max-width: 100%;
    }

    b {
      font-weight: 700;
    }
  }
}

.content-wrapper {
  border-radius: 4.5rem;
  display: flex;
  flex-direction: column;
  background-size: 200px, 100% 100vh;
  background-attachment: fixed;
  padding: 2rem;

  @media screen and (max-width: 1040px) {
    border-radius: 3.5rem;
    padding: 0.5rem;
  }
}

.content--row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-height: fit-content;
  border-radius: 4rem;

  @media screen and (max-width: 1040px) {
    flex-direction: column;
    border-radius: 3rem;

    &.reverse {
      flex-direction: column-reverse;
    }
  }
}

.type__expand--inline {
  gap: 0.1em;
  grid-template-columns: repeat(3, min-content);
}

.type__expand--center {
  display: flex;
  justify-content: center;
}

.type__expand--full {
  width: 100%;
  height: 100%;
}

.type__expand--full .type__expand-img {
  margin-left: auto;

  &.wide {
    margin-left: 0;
  }
}
