@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: #020204;
  color: #ffffff;
  overflow-x: hidden;
}

#space-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Navbar Layer */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2, 2, 4, 0.5);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-btn {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

/* Scroll Sections to drive timeline length */
.scroll-section {
  position: relative;
  z-index: 1;
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  max-width: 750px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: #00f2fe;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content p {
  color: #94a3b8;
  font-size: 1.15rem;
}

.info-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 24px;
  max-width: 500px;
}

.info-card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.info-card p {
  color: #94a3b8;
}