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

html{
  scroll-behavior:smooth;
}

body{
  font-family: Inter, Arial, sans-serif;
  background:#0b0b0b;
  color:white;
  overflow-x:hidden;
}

.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:28px 42px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:1.4rem;
  font-weight:700;
}

.logo-shape{
  width:18px;
  height:42px;
  background:#BF0A30;
  transform:skew(-14deg);
}

.menu{
  display:flex;
  gap:32px;
}

.menu a{
  color:white;
  text-decoration:none;
  opacity:0.8;
  transition:0.3s ease;
}

.menu a:hover{
  opacity:1;
}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  background:none;
  border:none;
  cursor:pointer;
}

.menu-toggle span{
  width:28px;
  height:2px;
  background:#f3d328;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  
}

.hero-video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}


@keyframes float{
  0%{
    transform:translateY(0px) rotate(0deg);
  }
  50%{
    transform:translateY(-20px) rotate(4deg);
  }
  100%{
    transform:translateY(0px) rotate(0deg);
  }
}

.hero-content{
  position:relative;
  width:min(1200px,90%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:80px;
  z-index:2;
}

.hero h1{
  font-size:clamp(3.5rem,3vw,3rem);
  line-height:0.95;
  font-weight:900;
  color: #BF0A30;
}

.card{
  background: #FFD700;
  color:black;
  padding:36px;
  max-width:420px;
  border-radius:4px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.card h3{
  margin-bottom:16px;
  font-size:1.3rem;
}

.card p{
  line-height:1.7;
  color:#444;
}

.content{
  padding:140px 10%;
  background:#111;
}

.section-label{
  color:#f3d328;
  letter-spacing:3px;
  margin-bottom:20px;
  font-size:0.85rem;
}

.content h2{
  font-size:clamp(2.5rem,5vw,5rem);
  margin-bottom:24px;
}

.content p{
  max-width:700px;
  line-height:1.8;
  color:#aaa;
}

.grid-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  padding:80px 10%;
  background:#0d0d0d;
}

.grid-card{
  border:1px solid rgba(255,255,255,0.08);
  padding:36px;
  background:#151515;
  transition:0.35s ease;
}

.grid-card:hover{
  transform:translateY(-8px);
  border-color:#f3d328;
}

.grid-card h3{
  margin-bottom:16px;
}

.grid-card p{
  color:#999;
  line-height:1.7;
}

.footer{
  padding:140px 10%;
  background:white;
  color:black;
}

.footer h2{
  font-size:clamp(2rem,5vw,4rem);
  margin-bottom:20px;
}

.footer p{
  color:#555;
}

@media(max-width:900px){

  .hero-content{
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding-top:120px;
  }

  .polygon{
    width:500px;
    height:500px;
  }

  .hero h1{
    font-size:4rem;
  }

  .menu{
    position:absolute;
    top:90px;
    right:30px;
    background:#111;
    padding:24px;
    border:1px solid rgba(255,255,255,0.1);
    flex-direction:column;
    display:none;
  }

  .menu.active{
    display:flex;
  }

  .menu-toggle{
    display:flex;
  }
}


