html {
  --logo-size: clamp(92px, 11vw, 136px);
  --brand-gap: clamp(20px, 3.2vw, 32px);
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #020d35;
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #020d35;
  color: #ffffff;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
}

.landing {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  min-width: 0;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 7vw, 80px);
  background: #020d35;
}

.landing__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 200%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.42;
  transform: translateX(-50%);
}

.landing__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(2 10 43 / 0.38), rgb(2 10 43 / 0.14) 48%, rgb(2 10 43 / 0.26)),
    linear-gradient(180deg, rgb(0 6 28 / 0.22), rgb(0 6 28 / 0.06) 42%, rgb(0 6 28 / 0.28));
  pointer-events: none;
}

.landing__content {
  display: flex;
  width: min(100%, 760px);
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.landing__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--brand-gap);
  min-width: 0;
}

.landing__logo {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  flex: 0 0 auto;
}

h1 {
  width: var(--logo-size);
  margin: 0;
  color: #ffffff;
  font-family: inherit;
  font-size: calc(var(--logo-size) * 0.45);
  font-weight: 380;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: left;
}

.landing__line {
  width: 100%;
  margin: clamp(24px, 3.2vw, 36px) 0 0;
  color: #ffffff;
  font-size: clamp(20px, 2.65vw, 32px);
  font-weight: 330;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.landing__backing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: clamp(64px, 11vh, 128px) 0 0;
  color: rgb(255 255 255 / 0.76);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 360;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.landing__yc-logo {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 3px;
}

@media (max-width: 560px) {
  html {
    --logo-size: 78px;
    --brand-gap: 15px;
  }

  .landing {
    padding: max(24px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
  }

  .landing__image {
    width: 100%;
    object-position: 80% center;
    opacity: 0.30;
    transform: none;
  }

  .landing__line {
    max-width: min(100%, 346px);
    margin-top: 19px;
    font-size: 20px;
    line-height: 1.32;
  }

  .landing__backing {
    margin-top: 58px;
    font-size: 12px;
  }

  .landing__yc-logo {
    width: 16px;
    height: 16px;
    border-radius: 2px;
  }
}

@media (max-width: 360px) {
  html {
    --logo-size: 70px;
    --brand-gap: 12px;
  }

  .landing {
    padding-inline: 18px;
  }

  .landing__line {
    max-width: min(100%, 324px);
    font-size: 18px;
  }
}

@media (max-width: 340px) {
  .landing__line {
    font-size: 16px;
  }
}
