/* =========================
   BASE
========================= */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #080E2A;
  color: #E5E8EF;
  position: relative;
  min-height: 100vh;
}

/* =========================
   BACKGROUND IMAGE
========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("./assets/images/Image_20251011_121030.jpg") center/cover no-repeat;
  opacity: 0.18; /* slightly reduced */
  z-index: 0;
  pointer-events: none;
}

/* =========================
   CANVAS
========================= */

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

/* =========================
   NAVBAR
========================= */

header {
  position: fixed;
  top: 25px;
  left: 40px;
  z-index: 3;
}

.logo {
  height: 75px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(74,168,255,0.5));
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 80px 100px 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 850px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1 {
  font-size: 42px; /* slightly reduced */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.highlight-blue {
  color: #4AA8FF;
}

.subheadline {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 50px;
}

.build {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 60px;
}

/* =========================
   FOUNDER SECTION
========================= */

.founder {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.photo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
}

.photo-glow {
  position: absolute;
  width: 110px;
  height: 110px;
  top: -15px;
  left: -15px;
  background: radial-gradient(circle, rgba(74,168,255,0.35) 0%, rgba(74,168,255,0) 70%);
  filter: blur(10px);
  animation: glowFloat 4s ease-in-out infinite;
  z-index: 0;
}

.founder-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #4AA8FF;
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}

.founder-photo:hover {
  box-shadow: 0 0 20px rgba(74,168,255,0.6);
  transform: scale(1.05);
}

.linkedin svg {
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transition: 0.3s ease;
}

.linkedin:hover svg {
  transform: scale(1.2);
}

.partners {
  font-weight: 600;
  margin-bottom: 50px;
}

/* =========================
   BUTTONS
========================= */

.buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-outline {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2C88D9, #4AA8FF);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(74,168,255,0.5);
}

.btn-outline {
  border: 1px solid #4AA8FF;
  color: #4AA8FF;
}

.btn-outline:hover {
  background: rgba(74,168,255,0.1);
  transform: translateY(-3px);
}

/* =========================
   FOOTER
========================= */

footer {
  position: relative;
  padding: 40px 80px;
  font-size: 12px;
  opacity: 0.5;
  z-index: 2;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes glowFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 900px) {

  header {
    left: 20px;
    top: 20px;
  }

  .logo {
    height: 55px;
  }

  .hero {
    padding: 120px 25px 80px 25px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: 32px;
  }

  .subheadline {
    font-size: 18px;
  }

  .build {
    font-size: 20px;
  }

  .founder {
    flex-direction: column;
    gap: 15px;
  }

  .photo-wrapper {
    width: 70px;
    height: 70px;
  }

  .founder-photo {
    width: 70px;
    height: 70px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  footer {
    padding: 30px 25px;
    text-align: center;
  }

}