/* Hero titles */
.hero__title-line1 {
  display: block;
  font-family: 'Lora', serif;
  font-size: 68px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-shadow:
    0 0 80px rgba(120,170,255,0.35),
    0 2px 40px rgba(0,0,10,0.9);
}

.hero__title-line2 {
  display: block;
  font-family: 'Lora', serif;
  font-size: 76px;
  font-weight: 300;
  font-style: italic;
  color: var(--star);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-shadow:
    0 0 100px rgba(120,170,255,0.4),
    0 2px 40px rgba(0,0,10,0.9);
}

.hero__subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(168,196,255,0.72);
}

/* Nav links */
.nav__link {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(168,196,255,0.88);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--text); }

.nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168,196,255,0.92);
  text-decoration: none;
  border: 0.5px solid rgba(168,196,255,0.35);
  border-radius: 20px;
  padding: 7px 16px;
  background: rgba(168,196,255,0.07);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav__btn:hover {
  border-color: rgba(168,196,255,0.6);
  background: rgba(168,196,255,0.14);
}
.nav__btn svg { flex-shrink: 0; }

/* Bottom UI text */
.hero__bottom-left-text {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(168,196,255,0.78);
  white-space: nowrap;
}

.hero__tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168,196,255,0.65);
}

.hero__scroll-text {
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168,196,255,0.8);
}
