/* Base typography */
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Header / nav */
.crpro-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.crpro-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crpro-brand {
  display: flex;
  align-items: center;
}

.crpro-logo {
  height: 52px;
  width: auto;
  display: block;
}

/* Navigation links */
.crpro-links a {
  margin-left: 18px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.crpro-links a:hover {
  text-decoration: underline;
}
