:root {
  --brand-blue: #3E5F78;
  --dark-blue: #2F4B66;
  --text: #2B2B2B;
  --muted: #6B7280;
  --rule: #D6D9DD;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --max: 1120px;
  --measure: 720px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 650;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(214, 217, 221, 0.75);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 160px;
  height: auto;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 1.25rem;
}

.section-divider {
  border-top: 1px solid var(--rule);
}

.hero {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.lede {
  max-width: 760px;
  margin-top: 2rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
  color: var(--text);
}

.button-row {
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--dark-blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 650;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: var(--brand-blue);
  transform: translateY(-1px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.section-intro {
  max-width: var(--measure);
}

.section-intro p + p {
  margin-top: 1rem;
}

.section-kicker {
  margin-bottom: 0.9rem;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subhead {
  margin-top: 1.5rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.value-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  min-height: 280px;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(214, 217, 221, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(47, 75, 102, 0.06);
}

.card-label {
  margin-bottom: 1.6rem;
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card h3 {
  margin-bottom: 0.9rem;
}

.card p {
  font-size: 1rem;
}

.feature {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) + 6px);
}

.feature p {
  max-width: 760px;
}

.feature p + p {
  margin-top: 1rem;
}

.contact {
  border-top: 1px solid var(--rule);
  text-align: center;
}

.contact .section-intro {
  margin: 0 auto;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}


/* Inner Pages */

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 1.25rem;
}

.page-header {
  max-width: 780px;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}

.page-header h1 {
  max-width: 760px;
}

.page-lede {
  max-width: 720px;
  margin-top: 1.5rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.page-content {
  max-width: 760px;
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p + p {
  margin-top: 1rem;
}

.page-content ul,
.page-content ol {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.page-content li + li {
  margin-top: 0.5rem;
}

.policy-content {
  font-size: 1rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

hr {
  margin: clamp(3rem, 6vw, 5rem) 0;
  border: 0;
  border-top: 1px solid var(--rule);
}