* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.site,
body.contentpane {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--va-text);
  background: var(--va-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: none;
  box-shadow: var(--va-focus-ring);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--va-surface);
  border-radius: 999px;
}

.va-container {
  width: min(calc(100% - 40px), var(--va-max));
  margin: 0 auto;
}

.va-main {
  padding-top: var(--va-section-gap);
  padding-bottom: var(--va-section-gap);
}

.va-section {
  margin-block: var(--va-section-gap);
}

.va-stack {
  display: grid;
  gap: var(--va-grid-gap);
}

.va-grid {
  display: grid;
  gap: var(--va-grid-gap);
}

.va-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.va-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.va-eyebrow,
.va-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--va-text-muted);
  font-weight: 700;
}

.va-kicker {
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--va-primary) 10%, transparent);
}

.va-title-1,
.va-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.va-title-2,
.va-card h1,
.va-card h2,
.va-card h3 {
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.va-title-2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 750;
}

.va-title-3 {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
}

.va-text,
.va-hero p,
.va-section-lead {
  font-size: 0.96rem;
  line-height: 1.6;
}

.va-text-muted,
.va-section-lead {
  color: var(--va-text-muted);
}

.va-hero h1,
.va-card h1,
.va-card h2,
.va-card h3 {
  margin: 0 0 14px;
}

@media (max-width: 900px) {
  .va-grid--2,
  .va-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .va-container {
    width: min(calc(100% - 20px), var(--va-max));
  }
}
