body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg-900);
  color: var(--white);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  z-index: 90;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 2.3px, transparent 3px);
  background-size: 10px 22px;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

p {
  color: var(--grey-300);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--grey-300);
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.manifesto {
  font-size: 0.95rem;
  color: var(--grey-500);
  max-width: 520px;
  margin-top: 1.8rem;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.manifesto .sig {
  display: block;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--accent-bright);
  margin-top: 0.5rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

section {
  position: relative;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.text-accent {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
