@font-face {
  font-family: 'Phonk';
  src: url('../fonts/Phonk Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  font-family: 'Gilroy', sans-serif;
}

.logo {
  position: absolute;
  top: 71px;
  left: 90px;
}

.logo img {
  width: 94px;
  height: 67px;
  display: block;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 40px;
}

.hero h1 {
  max-width: 950px;
  font-family: 'Phonk', 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 72px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #000000;
  text-box-trim: both;
  text-box-edge: cap alphabetic;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta p,
.cta a {
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.05em;
  text-box-trim: both;
  text-box-edge: cap alphabetic;
}

.cta p {
  color: #000000;
}

.cta a {
  color: #9100FF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta a:hover {
  opacity: 0.7;
}

/* Tablet */
@media (max-width: 1024px) {
  .logo {
    top: 40px;
    left: 40px;
  }

  .hero h1 {
    font-size: 64px;
    line-height: 64px;
  }

  .cta p,
  .cta a {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .logo {
    top: 24px;
    left: 24px;
  }

  .logo img {
    width: 70px;
    height: auto;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 42px;
  }

  .cta p,
  .cta a {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
}
