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

/* ROOT */
html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Inter, Roboto, Helvetica, Arial, sans-serif;
}

/* HERO BACKGROUND */
.hero {
  min-height: 100vh;
  background: linear-gradient(120deg,
    #f7c85a 0%,
    #f2b63c 40%,
    #eea327 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT */
.content {
  text-align: center;
  max-width: 640px;
  padding: 40px 24px;
}

/* LOGO */
.logo {
  width: 380px;
  max-width: 90%;
  margin-bottom: 40px;
}

/* HEADLINE */
.content h1 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b3f46;
  margin-bottom: 32px;
}

/* DIVIDER */
.divider {
  display: block;
  width: 72px;
  height: 2px;
  margin: 0 auto 28px;
  background: #0b3f46;
}

/* STATUS */
.status {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #0b3f46;
  opacity: 0.75;
}

/* =========================
   RESPONSIVE (NO DESIGN CHANGE)
========================= */

/* Tablets + phones */
@media (max-width: 768px) {
  .logo {
    width: 300px;
  }

  .content h1 {
    font-size: 18px;
  }

  .status {
    font-size: 13px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .logo {
    width: 240px;
  }

  .content {
    padding: 32px 16px;
  }

  .content h1 {
    font-size: 16px;
  }

  .divider {
    width: 60px;
  }

  .status {
    font-size: 12px;
    letter-spacing: 0.25em;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .logo {
    width: 220px;
  }

  .content h1 {
    font-size: 15px;
  }
}
