/* ===== RESET — always keep this at top ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background: #0a0a0f;
  color: #e8e6f0;
}

/* ===== NAV ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 6%;
  background: #0a0a0f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  color: white;
  font-family: fantasy;
  font-size: 1.6rem;    /* fixed — was 300% which is too big */
}

.links {
  list-style: none;     /* fixed — ol changed to ul */
  display: flex;
  gap: 2.5rem;          /* fixed — was 100px, rem is better */
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
  color: rgb(94, 59, 126);
  font-size: 1.1rem;    /* fixed — was 150% */
}

/* ===== HERO ===== */
#hero {
  min-height: 50vh;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,106,247,0.1);
  border: 1px solid rgba(124,106,247,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: #a89cf7;
  font-weight: 500;
  margin-bottom: 1.8rem;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c6af7;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.4rem;
}

.hero-title .c1 { color: #7c6af7; }
.hero-title .c2 { color: #f7c26a; }

.hero-sub {
  font-size: 1.05rem;
  color: #7a788a;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}