/* VCP Design System — base/reset. See issue #1. */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--silver-bright);
  margin: 0 0 var(--space-3);
  font-weight: 400;
  line-height: 1.1;
}

h1 { font-size: var(--fs-72); letter-spacing: -0.01em; line-height: 1.02; }
h2 { font-size: var(--fs-40); font-weight: 500; }
h3 { font-size: var(--fs-28); font-weight: 500; }
h4 { font-size: var(--fs-20); font-weight: 500; }

p {
  margin: 0 0 var(--space-3);
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.72;
}

a {
  color: var(--silver-bright);
  text-decoration: none;
}

em, .italic-accent {
  font-family: var(--font-display);
  font-style: italic;
}

small, .text-muted { color: var(--text-muted); }

/* Small-caps eyebrow label — nav tagline, card kickers, section labels */
.label-caps {
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  font-weight: 600;
  color: var(--text-muted);
}

.label-caps--wide { letter-spacing: var(--tracking-eyebrow); }

/* Kicker: hairline dash + eyebrow, used above display headings */
.kicker {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.kicker::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 216, 224, 0.7));
}

/* Mono meta text — dates, page counts, footnotes */
.meta-mono {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

/* Visible focus state — required by accessibility criteria */
:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

::selection {
  background: rgba(210, 216, 224, 0.22);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Metallic sheen text — signature effect for wordmark, headings */
.sheen-text {
  background: var(--silver-sheen);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--silver-bright); /* fallback if background-clip unsupported */
}
