:root {
  --bg: #f8fafc;
  --fg: #1f2933;
  --muted: #64748b;
  --ink: #0f172a;
  --surface: #ffffff;
  --surface-alt: #eef2f7;
  --accent: #3b82c4;
  --accent-strong: #2563eb;
  --shadow-soft: 0 6px 18px rgba(15, 23, 42, 0.1);
  --shadow-medium: 0 18px 48px rgba(15, 23, 42, 0.12);
  --border-subtle: rgba(148, 163, 184, 0.24);
  --border-soft: rgba(148, 163, 184, 0.4);
  --z-scrim: 9000;
  --z-header: 10000;
  --z-drawer: 11000;
  --header-height: 124px;
  --header-expanded-height: 124px;
  --header-offset: var(--header-expanded-height);
  --brand-max-height: 92px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (min-width: 1280px) {
  html {
    font-size: 18px;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--header-offset, var(--header-expanded-height));
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}

a:hover,
a:focus-visible {
  border-bottom-color: var(--muted);
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .6em;
  font-family: "Libre Franklin", "Raleway", sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

li {
  font-size: clamp(1rem, 2.3vw, 1.1rem);
  margin: .3rem 0;
}

.muted {
  color: var(--muted);
}

.upper {
  text-transform: uppercase;
  letter-spacing: .18em;
}

.center {
  text-align: center;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.pad {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.page-heading {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-heading.center {
  text-align: center;
}

.section-title {
  margin-bottom: .35rem;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.25rem);
}

.lead {
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--border-subtle);
  font-size: .95rem;
  color: var(--ink);
}

.list {
  margin: 0;
  padding-left: 1.25rem;
}

.kicker {
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: .8rem;
}
