:root {
  --bg: #0a0a0f;
  --surface: rgba(15, 15, 25, 0.7);
  --primary: #00f3ff;
  --secondary: #ffaa00;
  --text: #e8e8f0;
  --text-muted: #8a8a9a;
  --glow: 0 0 15px var(--primary);
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: 0.2s;
  z-index: 9999;
}

.cursor.hover {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 2px solid var(--primary);
}

/* BACKGROUND */
.grid-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(0, 243, 255, 0.08),
      transparent 40%
    ),
    linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
  background-size:
    100% 100%,
    40px 40px,
    40px 40px;
  z-index: -1;
}

/*navbar logo*/
.navbar {
  max-width: 1200px;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

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

  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.lvbau-logo {
  display: inline-block;
}
.logo i {
  color: #2c9aff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  margin-right: 6px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #eef5ff;
  font-weight: 500;
  transition: 0.2s;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2c9aff;
  transition: 0.3s;
}
.nav-links a:hover:after {
  width: 100%;
}
.nav-links a:hover {
  color: #8cd4ff;
}

nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  backdrop-filter: blur(12px);
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 28px;
  align-items: center;
  z-index: 100;
  transition: var(--transition);
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero-title {
  font-family: "Space Grotesk";
  font-size: clamp(3rem, 8vw, 6rem);
  background: linear-gradient(var(--text), #1400ff);
  -webkit-background-clip: text;
  color: transparent;
}

/* ABOUT */

.section {
  padding: 100px 20px;
  min-height: 100vh;

  padding: 4rem 2rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: left;
}
.section-content {
  max-width: 1000px;
}

.section-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.section-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #d6e2f0;
  margin-bottom: 18px;
}

.section h2 {
  text-align: center;
  color: white;
  margin-bottom: 30px;
  font-size: 2rem;
}

.section p {
  line-height: 1.8;
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 18px;
}

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-family: "Space Grotesk";
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow);
}

.card h3 {
  font-family: "Space Grotesk";
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.milestone {
  padding: 1.5rem;
  border-left: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 10px 10px 0;
}

.milestone h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
}

/* TEAM */

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2px solid rgba(0, 243, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.25);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar {
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.15);
}
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.member {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: var(--transition);
}

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

footer {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-credit {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-credit a {
  color: #006a7a; /* darker neon blue (idle state) */
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-credit a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  /* NAVBAR */
  nav {
    width: calc(100% - 20px);
    top: 10px;
    padding: 12px 16px;
    border-radius: 18px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }

  .logo-img {
    height: 32px;
  }

  nav a {
    font-size: 0.82rem;
  }

  /* HERO / INTRO */
  .section {
    min-height: auto;
    padding: 8rem 1.2rem 3rem;
    text-align: left;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .section-content {
    width: 100%;
  }

  .section-content h2 {
    font-size: 2rem;
  }

  .section-content p,
  .section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  /* GENERAL SECTION */
  section {
    padding: 3rem 1.2rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    margin-bottom: 2rem;
  }

  /* GRID */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .card {
    padding: 1.5rem;
  }

  /* TEAM */
  .team {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .member {
    padding: 1.4rem;
  }

  .member h3 {
    font-size: 1.2rem;
  }

  .member p {
    font-size: 0.95rem;
  }

  .avatar {
    width: 100px;
    height: 100px;
  }

  /* TIMELINE */
  .milestone {
    padding: 1.2rem;
  }

  /* FOOTER */
  footer {
    padding: 2.5rem 1rem;
    font-size: 0.85rem;
  }

  /* BACKGROUND GRID */
  .grid-bg {
    background-size:
      100% 100%,
      24px 24px,
      24px 24px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
  nav {
    gap: 10px;
  }

  nav a {
    font-size: 0.75rem;
  }

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

  .section-content p,
  .section p {
    font-size: 0.95rem;
  }

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

  .avatar {
    width: 90px;
    height: 90px;
  }

  .member {
    padding: 1.2rem;
  }
}

/* TOUCH DEVICES */
@media (hover: none) {
  .card:hover,
  .member:hover {
    transform: none;
    box-shadow: none;
  }
}

/* MOBILE TAP IMPROVEMENTS */
button,
a {
  -webkit-tap-highlight-color: transparent;
}
