* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #050506;
  color: #eceae8;
  font-family: Inter, Arial, sans-serif;
}
main { flex: 1 0 auto; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 5, 6, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 97, 19, 0.12);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}
.section { padding: 4rem 0; }
