/* Premium Institutional Design System */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography refinements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* Subtle transitions */
a, button {
  transition: all 0.2s ease;
}

/* Focus states */
a:focus, button:focus {
  outline: 2px solid #0f1419;
  outline-offset: 2px;
}

/* Backdrop blur support */
@supports (backdrop-filter: blur(10px)) {
  .backdrop-blur-md {
    backdrop-filter: blur(10px);
  }
}
