:root {
  --navy: #020617;
}

html {
  scroll-behavior: smooth;
}

body.studio-dark {
  margin: 0;
  background: var(--navy);
  color: #e2e8f0;
  font-family: Inter, system-ui, sans-serif;
}

.font-heading {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.studio-bar {
  background: #020617;
  color: #cbd5e1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.studio-bar a {
  color: inherit;
  text-decoration: none;
}

.studio-bar a:hover {
  text-decoration: underline;
}

.studio-bar .mark {
  color: #f1f5f9;
  font-weight: 700;
}