@layer base {

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav a,
.filter-btn,
.btn,
.tag,
.meta,
.section-title,
body,
h1,
h2,
h3 {
  font-family: "Inter", system-ui, sans-serif;
}

body {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: -0.005em;
  padding-top: 72px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 10%, #f7f3ea, #efe6d8),
    radial-gradient(circle at 70% 30%, rgba(196,90,90,0.02), transparent 65%),
    radial-gradient(circle at 20% 80%, rgba(111,134,214,0.015), transparent 70%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.025;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-soft);
}

p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  letter-spacing: -0.003em;
}

.section-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.nav a,
.filter-btn,
.btn,
.tag {
  font-weight: 500;
}

.meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.target {
  scroll-margin-top: 50px;
}

}