/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: #e6e8ee;
}

.nav-right a {
  margin-left: 24px;
  color: #b8c0ff;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-right a:hover {
  color: #ffffff;
}

/* MAIN CONTENT */
.container {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero {
  width: 120px;
  margin-bottom: 24px;
}

h1 {
  font-size: 2.6rem;
  margin: 0;
}

.tagline {
  margin-top: 14px;
  font-size: 1.2rem;
  color: #b8c0ff;
}

.cta {
  margin-top: 36px;
}

.cta .primary {
  padding: 12px 20px;
  border: 1px solid #b8c0ff;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
}

.cta .primary:hover {
  background: #b8c0ff;
  color: #0b1020;
}
