/*
Theme Name: Beez Landing
Author: Khulan Bayarsaikhan
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Raleway', Arial, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  background: #060914;
}

.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 120px;
  background:
    linear-gradient(rgba(3, 6, 16, 0.66), rgba(3, 6, 16, 0.78)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}

.container {
  width: min(1040px, 100%);
  text-align: center;
}

h1 {
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.85s ease forwards 0.1s;
}

.tagline {
  max-width: 920px;
  margin: 0 auto 72px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  animation: fadeUp 0.85s ease forwards 0.25s;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  align-items: start;
}

.product {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.85s ease forwards;
}

.product:nth-child(1) { animation-delay: 0.45s; }
.product:nth-child(2) { animation-delay: 0.58s; }
.product:nth-child(3) { animation-delay: 0.71s; }
.product:nth-child(4) { animation-delay: 0.84s; }
.product:nth-child(5) { animation-delay: 0.97s; }
.product:nth-child(6) { animation-delay: 1.1s; }

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 13px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(21, 31, 50, 0.92);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 48px rgba(0,0,0,0.26);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.button:hover {
  transform: translateY(-4px);
  background: rgba(31, 45, 70, 0.96);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
}

.product p {
  margin: 18px auto 0;
  max-width: 170px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.bottom-contact {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255,255,255,0.94);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  opacity: 0;
  animation: fadeUp 0.85s ease forwards 1.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .page {
    padding: 62px 20px 120px;
  }

  .buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }

  .tagline {
    margin-bottom: 54px;
  }
}

@media (max-width: 560px) {
  .page {
    align-items: flex-start;
    padding: 86px 18px 120px;
  }

  h1 {
    font-size: 42px;
  }

  .tagline {
    font-size: 18px;
    margin-bottom: 42px;
  }

  .buttons {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product p {
    max-width: 230px;
  }

  .bottom-contact {
    left: 18px;
    right: 18px;
    bottom: 28px;
    font-size: 13px;
  }
}