@font-face{
  font-family:"Buixots";
  src:
    url("fonts/Buixots.woff2") format("woff2"),
    url("fonts/Buixots.woff") format("woff");
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Buixots", system-ui, sans-serif;
  background:#ffffff;
  color:#111;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

/* HEADER */

.topbar{
  max-width:1320px;
  margin:0 auto;
  padding:20px;
}

.brand-title{
  font-family:"Buixots", system-ui, sans-serif;
  color:#111;
  font-size:clamp(2.25rem, 6vw, 2.5rem);
  line-height:1.1;
  text-transform:uppercase;
}

/* MAIN */

.main{
  max-width:1320px;
  margin:0 auto;
  padding:20px;
}

/* INTRO */

.intro{
  text-align:center;
  margin-bottom:70px;
}

.intro-logo{
  margin:0 auto 26px;
  max-width:560px;
}

.intro h1{
  font-size:clamp(2.25rem, 6vw, 3.92rem);
  line-height:1.1;
  letter-spacing:-0.09rem;
  margin:0 0 26px;
  color:#1FBC55;
  text-transform: uppercase;
}

.intro-text{
  max-width:880px;
  margin:0 auto;
  text-align:left;
}

.intro-text p{
  margin:0 0 18px;
  line-height:1.1;
  font-size:clamp(2.25rem, 6vw, 1.2rem);
}

/* PACKS */

.pack-section{
  margin-top:70px;
}

.pack-section h2{
  margin:0 0 24px;
  font-size:clamp(1.6rem, 3vw, 3.2rem);
  line-height:1.2;
  text-align:left;
  color:#1FBC55;
  text-transform: uppercase;
}

/* EMOJI GRID */

.emoji-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:22px;
}

.emoji-item{
  text-align:center;
}

.emoji-item img{
  margin:0 auto;
}

/* DOWNLOAD BLOCK */

.download-block{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
  margin-top:42px;
}

.download-text{
  text-align:left;
}

.download-text h3{
  margin:0 0 14px;
  font-size:2.2rem;
  text-transform:uppercase;
}

.download-text p{
  margin:0 0 16px;
  line-height:1.75;
  font-size:1rem;
}

.store-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.store-buttons img{
  width:200px;
  max-width:100%;
}

.download-qr img{
  margin:0 auto;
  max-width:100%;
}

/* BACK */

.back{
  margin-top:50px;
  font-size:.95rem;
  font-family:system-ui, Arial, sans-serif;
}

.back a{
  color:#2563eb;
}

.back a:hover{
  text-decoration:underline;
}

/* FOOTER */

.footer{
  text-align:center;
  padding:30px 20px;
  font-size:0.9rem;
  color:#777;
  font-family:system-ui, Arial, sans-serif;
}

/* RESPONSIVE */

@media (max-width:900px){
  .emoji-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }

  .download-block{
    grid-template-columns:1fr;
    gap:30px;
  }
}

@media (max-width:640px){
  .main{
    padding:16px;
  }

  .emoji-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px;
  }

  .intro{
    margin-bottom:50px;
  }

  .pack-section{
    margin-top:50px;
  }
}

@media (max-width:480px){
  .emoji-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .store-buttons img{
    width:170px;
  }
}