* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #101010;
  color: white;
}
.page {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Sidebar */

.sidebar {
  width: 15vw;
  background: #101010;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
}

.vertical-brand {
  transform: rotate(-90deg) translateX(-10vh);
  transform-origin: center;
  white-space: nowrap;
}
.vertical-brand span {
  font-size: 4rem;
  font-weight: bold;
}
.vertical-brand small {
  display: block;
  font-size: 2rem;
}

.sidebar-footer {
  text-align: start;
  font-size: 0.7rem;
}
.sidebar-footer .note {
  font-size: 0.65rem;
  margin-top: 0.3rem;
}
.cta-btn {
  margin-top: 1rem;
  background: none;
  border: 1px solid white;
  color: white;
  padding: 0.4rem 3rem;
  font-size: 0.7rem;
  border-radius: 20px;
  cursor: pointer;
}

/* Main Content */

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem;
  justify-content: space-between;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links li {
  cursor: pointer;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: background 0.2s ease;
}

.nav-links a {
  cursor: pointer;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: background 0.2s ease;
  text-decoration: none;
  color: white;
}

.nav-links .active {
  background: #90ee90;
  color: #111;
}
.nav-cta {
  border: 1px solid white;
  background: none;
  padding: 0.4rem 3rem;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

video {
  width: 800px;
  z-index: 0;
}

.hero {
  margin-top: 1rem;
  z-index: 2;
}
.hero h1 {
  font-size: 4rem;
  line-height: 1;
}
.hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  max-width: 400px;
  opacity: 0.7;
}