@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

/* Base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: 'Satoshi', sans-serif;
  color: #ffffff;
  background: linear-gradient(
    to bottom,
    #ff0060 0%,
    #ff7a1a 55%,
    #ffe70d 100%
  );
  padding: 40px 20px;
}

a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Page */

.page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero */

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__logo {
  width: min(420px, 78%);
  height: auto;
  margin-bottom: 42px;
}

.hero__eyebrow {
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 1100px;
}

.hero__divider {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.hero__intro {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 42px;
  opacity: 0.96;
}

.hero__contact {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Footer */

.footer {
  width: 100%;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer__column {
  min-width: 0;
}

.footer__heading {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.footer__column p {
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.95;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 0.95rem;
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__bottom p {
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 768px) {
  body {
    padding: 32px 16px;
  }

  .hero__logo {
    width: 75%;
    margin-bottom: 36px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .footer {
    margin-top: 60px;
    padding-top: 36px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer__socials {
    justify-content: center;
  }
}