@font-face {
  font-family: "Euclid Circular A";
  src: url("assets/EuclidCircularA-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-green: #62C640;
  --text-color: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--brand-green);
  color: var(--text-color);
  font-family: "Euclid Circular A", Arial, Helvetica, sans-serif;
}

.launch-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero {
  width: min(100%, 1260px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 132px;
}

.logo {
  width: min(92vw, 1120px);
  height: auto;
  display: block;
}

.claim {
  max-width: 980px;
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: 0;
  text-align: left;
  align-self: flex-start;
  padding-left: calc(6.5% + 60px);
}

.claim span,
.claim strong {
  display: block;
}

.claim strong {
  margin-top: 12px;
  font: inherit;
}

.languages-logo {
  position: absolute;
  left: 24px;
  bottom: 37px;
  width: min(14vw, 125px);
  max-width: 125px;
  max-height: 115px;
  height: auto;
  object-fit: contain;
  display: block;
}

.corner-logo {
  position: absolute;
  left: 28px;
  top: 24px;
  width: min(12vw, 120px);
  height: auto;
  display: block;
}

.credit {
  position: absolute;
  right: 28px;
  bottom: 24px;
  margin: 0;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: right;
}

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

.credit a:hover,
.credit a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .launch-page {
    padding: 24px;
  }

  .hero {
    gap: 84px;
  }

  .logo {
    width: min(82vw, 520px);
  }

  .claim {
    font-size: 20px;
    line-height: 1.35;
    padding-left: 0;
  }

  .languages-logo {
    left: 16px;
    bottom: 23px;
    width: min(25vw, 90px);
    max-width: 90px;
    max-height: 83px;
  }

  .corner-logo {
    left: 18px;
    top: 16px;
    width: min(19vw, 80px);
  }

  .credit {
    right: 18px;
    bottom: 16px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .claim {
    font-size: 18px;
  }
}
