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

body{
  font-family:'Inter',sans-serif;
  background:#f7f8fb;
  color:#111827;
  overflow-x:hidden;
  line-height:1.6;
}

a{
  text-decoration:none;
}

img{
  width:100%;
  display:block;
}

.container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:75px 0;
}

/* HEADER */

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #e5e7eb;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:44px;
  height:44px;
  border-radius:12px;
  object-fit:cover;
}

.logo h2{
  font-size:1rem;
  font-weight:700;
  color:#111827;
}

nav{
  display:flex;
  gap:26px;
}

nav a{
  color:#4b5563;
  font-size:0.95rem;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#111827;
}

.menu-toggle{
  display:none;
  font-size:1.4rem;
  cursor:pointer;
  color:#111827;
}

/* HERO */

.hero{
  min-height:92vh;
  display:flex;
  align-items:center;
  background:
  radial-gradient(circle at top right, rgba(59,130,246,0.10), transparent 30%),
  radial-gradient(circle at bottom left, rgba(99,102,241,0.08), transparent 25%),
  #f7f8fb;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-text h1{
  font-size:4rem;
  line-height:1.05;
  margin-bottom:20px;
  font-weight:800;
  color:#111827;
}

.hero-text p{
  color:#6b7280;
  font-size:1.05rem;
  margin-bottom:32px;
  max-width:550px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 24px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
  font-size:0.95rem;
}

.btn-primary{
  background:#111827;
  color:#ffffff;
}

.btn-primary:hover{
  background:#1f2937;
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid #d1d5db;
  background:#ffffff;
  color:#111827;
}

.btn-secondary:hover{
  background:#f3f4f6;
}

/* HERO SHOWCASE */

.hero-showcase{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.showcase-card{
  background:#ffffff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
  transition:0.3s;
}

.showcase-card:hover{
  transform:translateY(-5px);
}

.showcase-card img{
  height:220px;
  object-fit:cover;
}

.showcase-info{
  padding:18px;
}

.showcase-info h3{
  font-size:1rem;
  margin-bottom:6px;
  color:#111827;
}

.showcase-info p{
  color:#6b7280;
  font-size:0.9rem;
}

/* TITLES */

.section-title{
  font-size:2.5rem;
  text-align:center;
  margin-bottom:16px;
  color:#111827;
  font-weight:800;
}

.section-subtitle{
  max-width:760px;
  margin:auto auto 55px;
  text-align:center;
  color:#6b7280;
  font-size:1rem;
}

/* INFO CARDS */

.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.info-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:35px;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
  transition:0.3s;
}

.info-card:hover{
  transform:translateY(-5px);
}

.info-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
}

.info-icon i{
  font-size:1.8rem;
}

.about-icon{
  background:#eef2ff;
  color:#4338ca;
}

.services-icon{
  background:#ecfeff;
  color:#0891b2;
}

.info-card h3{
  font-size:1.5rem;
  margin-bottom:15px;
  color:#111827;
}

.info-card p{
  color:#6b7280;
  margin-bottom:25px;
}

/* PRODUCTS */

.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.product-card{
  background:#ffffff;
  border-radius:26px;
  border:1px solid #e5e7eb;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
  transition:0.3s;
  text-align:center;
}

.product-card:hover{
  transform:translateY(-5px);
}

.product-card img{
  height:210px;
  object-fit:contain;
  padding:30px;
  background:#f9fafb;
}

.product-info{
  padding:26px;
}

.product-info h3{
  margin-bottom:22px;
  font-size:1.2rem;
  color:#111827;
}

.playstore-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  background:#111827;
  color:#ffffff;
  padding:15px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
}

.playstore-btn:hover{
  background:#1f2937;
}

/* MERCH */

.merch-section{
  background:#ffffff;
}

.merch-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.merch-card{
  background:#ffffff;
  border-radius:26px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
  transition:0.3s;
}

.merch-card:hover{
  transform:translateY(-5px);
}

.merch-card img{
  height:280px;
  object-fit:cover;
}

.merch-info{
  padding:24px;
}

.merch-info h3{
  margin-bottom:10px;
  font-size:1.1rem;
  color:#111827;
}

.merch-info p{
  color:#6b7280;
  margin-bottom:18px;
  font-size:0.93rem;
}

.coming-soon{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#f3f4f6;
  color:#374151;
  padding:10px 15px;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:500;
}

/* CTA */

.cta-box{
  background:
  radial-gradient(circle at center, rgba(59,130,246,0.10), transparent 40%),
  #ffffff;

  border:1px solid #e5e7eb;
  border-radius:32px;
  padding:60px 30px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.cta-box h2{
  font-size:2.4rem;
  margin-bottom:18px;
  color:#111827;
}

.cta-box p{
  color:#6b7280;
  max-width:700px;
  margin:auto auto 28px;
}

/* CONTACT */

.contact-box{
  text-align:center;
}

.contact-box p{
  color:#6b7280;
  margin-top:10px;
}

/* FOOTER */

footer{
  padding:35px 0;
  text-align:center;
  border-top:1px solid #e5e7eb;
  background:#ffffff;
  color:#6b7280;
}

.footer-links{
  margin-top:10px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

footer a{
  color:#374151;
}

/* TABLETS */

@media(max-width:992px){

  .hero-content{
    grid-template-columns:1fr;
  }

  .hero-text{
    text-align:center;
  }

  .hero-text p{
    margin:auto auto 32px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-text h1{
    font-size:3.2rem;
  }
}

/* MOBILE */

@media(max-width:768px){

  nav{
    position:absolute;
    top:75px;
    right:20px;
    background:#ffffff;
    width:220px;
    flex-direction:column;
    padding:20px;
    border-radius:20px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:none;
  }

  nav.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .hero-text h1{
    font-size:2.5rem;
  }

  .hero-showcase{
    grid-template-columns:1fr;
  }

  .section-title{
    font-size:2rem;
  }

  .cta-box h2{
    font-size:2rem;
  }

  section{
    padding:60px 0;
  }
}

@media(max-width:480px){

  .hero-text h1{
    font-size:2.1rem;
  }

  .btn{
    width:100%;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .product-card img{
    height:180px;
  }

  .merch-card img{
    height:240px;
  }

  .section-title{
    font-size:1.8rem;
  }

  .cta-box{
    padding:45px 22px;
  }

  .cta-box h2{
    font-size:1.7rem;
  }
}