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

body {
  background: #fff;
  font-family: 'Inter', sans-serif;
  color: #171A25;
  overflow-x: hidden;
}

.page {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 0 80px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 579px;
  gap: 120px;
}

.title {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 80px;
  font-style: italic;
  line-height: 92px;
  letter-spacing: -0.05em;
  color: #16B226;
  text-align: left;
}

.title .italic {
  font-style: normal;
  color: #1B1B1B;
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.footer .links {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.link {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05em;
  color: #171A25;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.email {
  font-size: 20px;
  line-height: 24px;
  color: #171A25;
  text-decoration: none;
}

.legal {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05em;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

img {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Fade (only visible on mobile) */
.fade {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(238,238,238,0) 0%, rgba(238,238,238,1) 66%, rgba(238,238,238,1) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  body {
    background: #EEEEEE;
  }

  .page {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px;
  }

  .hero-image {
    position: absolute;
    width: 330px;
  }

  img {
    display: inline-block;
    position: static;
    bottom: auto;
    right: auto;
  }

  .fade {
    display: block;
  }

  .title {
    position: relative;
    top: 20px;
    font-size: 50px;
    line-height: 56px;
    letter-spacing: 0.02em;
  }

  .footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }

  .footer .links {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .link,
  .email,
  .legal {
    font-size: 16px;
    line-height: 20px;
  }

  .terms {
    position: absolute;
    bottom: 60px;
    width: 100px;
  }

  .privacy {
    position: absolute;
    bottom: 60px;
    left: 115px;
    width: 100px;
  }

  .email {
    position: absolute;
    bottom: 100px;
  }

  .legal {
    position: absolute;
    bottom: 0;
    width: 210px;
  }
}
