*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar, *::-webkit-scrollbar { display: none; }

body {
  font-family: 'Geist', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.1;
}

.section { padding: 96px 0; overflow-x: hidden; }

.container {
  width: min(1160px, 100% - 48px);
  margin: 0 auto;
}

.section-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--text);
  margin-bottom: 48px;
}

.empty-state {
  text-align: center;
  padding: 56px 24px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.skeleton {
  background: linear-gradient(90deg, var(--surface2) 25%, var(--border) 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 2px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

footer {
  padding: 32px 0;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-title { margin-bottom: 32px; }
  .container { width: calc(100% - 32px); }
}
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .container { width: calc(100% - 24px); }
}
