:root{
  --bg:#050608;
  --green:#2fb24a;
  --green-dark:#1f8f3a;
  --text:#ffffff;
  --muted:#9aa7bd;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: 100px;
  line-height: 1.6;
}

/* Container */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* Topbar */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background:#000;
  padding:22px 0;
  border-bottom:1px solid #111;
  z-index: 1000;
}

.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand__logo{
  height:40px;
}

.nav a{
  color:var(--muted);
  margin-left:35px;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:.2s ease;
}

.nav a:hover{
  color:var(--green);
}

/* Alert */
.alert-banner{
  position: fixed;
  top: 88px;          /* <- BELOW the topbar */
  right: 16px;
  background: var(--green);
  color:#000;
  padding:10px 18px;
  font-weight:800;
  z-index: 2000;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* Sections */
.section{
  padding:120px 0;
}

/* Hero */
.hero{
  padding:140px 0 100px 0;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:80px;
  align-items:center;
}

.hero__left h1{
  font-size:64px;
  font-weight:800;
  line-height:1.05;
  margin-bottom:30px;
}

.hero__left p{
  color:var(--muted);
  font-size:20px;
  margin-bottom:35px;
  max-width:600px;
}

.buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:16px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  letter-spacing:.5px;
  border:1px solid #1a1a1a;
  transition:.2s ease;
}

.btn.primary{
  background:var(--green);
  border:none;
  color:#000;
}

.btn.primary:hover{
  background:var(--green-dark);
}

.btn:hover{
  transform:translateY(-2px);
}

/* Card */
.card{
  background:#0b0f14;
  padding:45px;
  border-radius:18px;
  border:1px solid #111;
}

.card h3{
  font-size:22px;
  margin-bottom:10px;
}

.card p{
  color:var(--muted);
  margin-bottom:25px;
}

/* Headings */
.section h2{
  font-size:42px;
  margin-bottom:30px;
}

.section p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:30px;
  max-width:800px;
}

/* Bullet spacing */
.bullets{
  margin-top:25px;
  padding-left:20px;
}

.bullets li{
  margin-bottom:15px;
  font-size:18px;
}

/* Contact */
.contact-box{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:25px;
  padding:40px;
  background:#0b0f14;
  border-radius:18px;
  border:1px solid #111;
}

.contact-box a{
  color:var(--green);
  font-weight:700;
  text-decoration:none;
}

footer{
  padding:60px 0;
  text-align:center;
  border-top:1px solid #111;
  margin-top:100px;
  color:var(--muted);
}

/* Responsive */
@media (max-width:900px){
  .hero__grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .hero__left h1{
    font-size:42px;
  }
}
.video-stack{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.video-title{
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;      /* centers the title */
  margin-bottom: 14px;     /* small spacing before video */
  letter-spacing: 1px;     /* gives it a cleaner premium feel */
}


.video-frame{
  max-width: 700px;   /* controls how wide the video can get */
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #131824;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  margin: 0 auto;     /* centers the video */
}

.video-frame iframe{
  width: 100%;
  height: 100%;
}
.video-item{
  text-align: center;
}

.video-title{
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 10px 0; /* small space between title and video */
}








