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

    .heros-img{
      width:430px;
      border-radius:30px;
      box-shadow:0 20px 60px rgba(0,0,0,0.5);
    }

    /*--BODY--*/

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

    body {
      line-height: 1.6;
  /*    padding: 20px;  */
      margin: 0;
      padding-top: 120px; /* prevents navbar overlap */
      overflow-x: hidden;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    header{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      padding:22px 8%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      backdrop-filter:blur(10px);
      background:rgba(0,0,0,0.6);
      border-bottom:1px solid rgba(255,255,255,0.08);
      z-index:1000;
    }

    .logo{
      font-size:1.3rem;
      font-weight:700;
      letter-spacing:2px;
    }

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

    nav a{
      color:#c7c7c7;
      transition:0.3s;
    }

    nav a:hover{
      color:white;
    }

    .hero-man{
      min-height:100vh;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:140px 8%;
      background:
        radial-gradient(circle at top left, rgba(125,90,255,0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,180,255,0.18), transparent 35%),
        #0b0b0b;
    }

    .hero-man-text{
      max-width:600px;
    }

    .hero-man-text h1{
      font-size:5rem;
      line-height:1;
      margin-bottom:24px;
    }

    .hero-text p{
      color:#a8a8a8;
      font-size:1.1rem;
      line-height:1.8;
      margin-bottom:35px;
    }

    .btn{
      display:inline-block;
      background:white;
      color:black;
      padding:15px 28px;
      border-radius:999px;
      font-weight:600;
      transition:0.3s;
    }

     .btn:hover{
      transform:translateY(-3px);
      box-shadow:0 12px 30px rgba(255,255,255,0.15);
    }

    .hero-man img{
      width:430px;
      border-radius:30px;
      box-shadow:0 20px 60px rgba(0,0,0,0.5);
    }

    .section{
      padding:100px 8%;
    }

    .section-title{
      font-size:2.2rem;
      margin-bottom:45px;
    }

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

    .card{
      background:#121212;
      border:1px solid rgba(255,255,255,0.06);
      border-radius:24px;
      overflow:hidden;
      transition:0.35s;
    }

    .card:hover{
      transform:translateY(-8px);
      border-color:rgba(255,255,255,0.18);
    }

    .card img{
      width:100%;
      height:300px;
      object-fit:cover;
    }

    .card-content{
      padding:22px;
    }

    .card-content h3{
      margin-bottom:10px;
      font-size:1.1rem;
    }

    .card-content p{
      color:#9e9e9e;
      margin-bottom:18px;
      line-height:1.6;
    }

    .price{
      font-weight:700;
    }

    .newsletter{
      margin-top:100px;
      padding:60px;
      border-radius:30px;
      background:#111;
      border:1px solid rgba(255,255,255,0.08);
      text-align:center;
    }

    .newsletter h2{
      font-size:2rem;
      margin-bottom:15px;
    }

    .newsletter p{
      color:#a3a3a3;
      margin-bottom:28px;
    }

    .newsletter form{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:12px;
    }

    .newsletter input{
      width:320px;
      padding:15px 20px;
      border:none;
      outline:none;
      border-radius:999px;
      background:#1d1d1d;
      color:white;
    }

    footer{
      padding:40px 8%;
      border-top:1px solid rgba(255,255,255,0.08);
      display:flex;
      justify-content:space-between;
      flex-wrap:wrap;
      color:#8f8f8f;
    }

    @media(max-width:900px){

      .hero-man{
        flex-direction:column;
        text-align:center;
        gap:60px;
      }

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

      nav{
        display:none;
      }

      .hero-man img{
        width:100%;
        max-width:400px;
      }

    }

  /* =========================
   GLOBAL RESET
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   TEXT SETTINGS
   ========================= */
.large-text-dark {
  font-size: 50px;
  color: #020A1C;
}

.large-text {
  font-size: 50px;
  color: #E4EAF0;
}

.mid-text {
  font-size: 20px;
}

.small-text {
  font-size: 14px;
}

h1 {
  color: #01040A;
  margin-bottom: 1rem;
  text-align: center;
}

/* =========================
   IMAGES
   ========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   HERO SECTIONS
   ========================= */
.hero {
  background-image: url("/images/Percept AGI Logo Banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-man::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-man-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
}

.hero-man-section {
  background-image: url('Percept AGI Logo Banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center; */
}

/* =========================
   VIDEO BACKGROUND
   ========================= */
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-section .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

/* =========================
   TOP BANNER / NAV
   ========================= */
.top-banner {
  backdrop-filter: blur(10px);
}

/* Logo container */
.logo-container img {
  width: 30vw;       /* 50% of the viewport width */
  height: auto;
  display: block;
  margin: 0 auto; /* centers + space below */
}

.logo-container {
  text-align: center;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px;
}

.nav-row a {
  text-decoration: none;
  color: white;
  background-color: #555;
  padding: 12px 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-row a:hover {
  background-color: #777;
}

/* =========================
   SECTIONS
   ========================= */
.page-section {
  padding: 10px;
}

section img {
  width: 100%;
  height: auto;
}

.section-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background-color: #444;
  color: white;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.section-button:hover {
  background-color: #666;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 40px 20px 10px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 13px;
}

/* =========================
   UTILITIES
   ========================= */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  .large-text,
  .large-text-dark {
    font-size: 32px;
  }

  .mid-text {
    font-size: 18px;
  }

  .small-text {
    font-size: 13px;
  }

  .nav-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-row a {
    width: 90%;
    text-align: center;
  }

  .hero-man,
  .hero-man-section,
  .video-section {
    height: auto;
    padding: 60px 20px;
  }

  .logo-container img {
    width: 150px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }

  .page-section {
    padding: 20px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .menu-toggle {
    margin: 10px auto;
    width: fit-content;
  }

  .nav-bar {
    display: flex;
    flex-direction: column;
    background-color: #333;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-bar.open {
    max-height: 500px;
  }

  .nav-row {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-row a {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
}