body {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  background: #fdfdfd;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h-hero { font-size: clamp(48px, 8vw, 96px); font-weight: 700; line-height: 1.2; }
.h-section { font-size: clamp(40px, 5vw, 64px); font-weight: 600; }
.h-card { font-size: clamp(22px, 2.2vw, 28px); font-weight: 600; }

.eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn--dark { background: var(--bg-dark-warm); color: var(--text-light); }
.btn--light { background: var(--text-light); color: var(--text-dark); }
.btn--outline { background: transparent; color: var(--text-light); border: 1px solid var(--border-soft); }

section { padding-block: clamp(80px, 12vw, 120px); }
