/* Verbatim excerpt from src/index.css — only global base + navbar + matching @media. Do not edit by hand; sync from index.css when the app header changes. */
:root {
  --background: #f5f5f7;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --border: #d2d2d7;
  --accent: #000000;
  --page-pad-x: 22px;
}

a,
a:visited {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fd004c;
}

a:hover h2 {
  color: #fd004c;
}

a:hover p,
a:hover time {
  color: #fd004c;
}

body {
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.47059;
  font-size: 20px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

::selection {
  background-color: #fd004c;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(245,245,247,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 0.85;
}

@media (max-width: 1500px) {
  .nav-container {
    padding: 0 16px;
  }
}

@media (max-width: 1500px) {
  .nav-menu {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  .navbar {
    position: sticky;
  }

  .nav-container {
    height: 44px;
    padding: 0 16px;
  }

  .logo {
    font-size: 21px;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-link {
    font-size: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .logo {
    font-size: 22px;
  }

  .nav-link {
    font-size: 19px;
  }
}
