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

body {
  background-color: #0D0010;
  color: #FFFFFF;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(5, 0, 15, 0.92);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123,47,190,0.2);
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: #E8874A;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(5, 0, 15, 0.97);
  border: 1px solid rgba(123,47,190,0.3);
  border-radius: 6px;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 160px;
  margin-top: 0.75rem;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.dropdown-menu li a:hover {
  color: #FFFFFF;
  background: rgba(123,47,190,0.2);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-social img {
  width: 18px;
  height: 18px;
  filter: invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
  display: block;
}

.nav-social:hover img {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5rem;
  position: relative;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 0, 15, 0.88) 0%,
    rgba(20, 0, 40, 0.65) 55%,
    rgba(5, 0, 15, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.85rem 2rem;
  background: #7B2FBE;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #9B42E0;
}

.btn-outline {
  padding: 0.85rem 2rem;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
}
.hero-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #E8874A;
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}