/* ====== PIXEL MOON CONTAINER ====== */
.moon-container {
  position: fixed;
  top: 30px; right: 5%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.moon-container svg {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: 320px; height: 320px;
  opacity: 0.88;
  filter: drop-shadow(0 0 30px rgba(232,228,212,0.10))
          drop-shadow(0 0 70px rgba(232,228,212,0.05));
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
}

.hero-name {
  font-family: var(--font-hero);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--text-bright);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-divider {
  width: 48px; height: 1px;
  background: var(--text-dim);
  margin-bottom: 48px;
}

.hero-intro {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: var(--accent);
  line-height: 1.7;
  max-width: 560px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-indicator .arrow {
  width: 1px; height: 24px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ====== ROLE SECTIONS ====== */
.roles { padding: 80px 0 160px; }

.role {
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-play-state: paused;
}

.role-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.role-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.role-description {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 28px;
}

.role-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(200,200,208,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.role-link:hover {
  color: var(--text-bright);
  border-color: var(--text-bright);
}

/* ====== HOME RESPONSIVE ====== */
@media (max-width: 768px) {
  .moon-container { right: -30px; top: 50px; }
  .moon-container svg { width: 200px; height: 200px; }
  .role { margin-bottom: 80px; }
}

@media (max-width: 480px) {
  .hero-intro { font-size: 18px; }
  .role-description { font-size: 15px; }
  .moon-container svg { width: 140px; height: 140px; }
  .moon-container { right: -15px; top: 65px; }
}
