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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: #0a0a0a;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  color: #1d4ed8;
}

::selection {
  background: #dbeafe;
  color: #0a0a0a;
}

:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 3px;
}

.page {
  max-width: 100%;
  overflow-x: hidden;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-body {
  flex: 1;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.pad-page {
  padding-top: 96px;
  padding-bottom: 96px;
}

.pad-page-tall {
  padding-bottom: 120px;
}

/* Progress rule (principles) */
.progress-rule {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  background: #e5e7eb;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #1d4ed8;
}

/* Header */
.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  width: 10px;
  height: 10px;
  background: #1d4ed8;
  flex: none;
}

.logo-mark.sm {
  width: 9px;
  height: 9px;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  padding-bottom: 3px;
  white-space: nowrap;
  background-image: linear-gradient(#1d4ed8, #1d4ed8);
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size 0.12s ease, color 0.12s ease;
}

.nav-link:hover {
  background-size: 100% 1.5px;
  color: #0a0a0a;
}

.nav-link.is-active {
  font-weight: 600;
  color: #1d4ed8;
  background-size: 100% 1.5px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #0a0a0a;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Typography helpers */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 500;
}

.eyebrow.side {
  letter-spacing: 0.14em;
  padding-top: 10px;
}

.accent {
  color: #1d4ed8;
}

.split {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.block-gap {
  margin-top: 72px;
}

.block-gap .eyebrow.side {
  padding-top: 6px;
}

/* Buttons / links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16.5px;
  border-radius: 3px;
  transition: background 0.15s ease;
}

.btn-primary {
  background: #1d4ed8;
  color: #ffffff;
  padding: 16px 30px;
}

.btn-primary:hover {
  background: #1e40af;
  color: #ffffff;
}

.text-link {
  font-size: 16.5px;
  font-weight: 600;
  color: #0a0a0a;
  padding-bottom: 3px;
  background-image: linear-gradient(#1d4ed8, #1d4ed8);
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size 0.12s ease;
}

.text-link:hover {
  background-size: 100% 1.5px;
  color: #0a0a0a;
}

/* Home */
.hero {
  padding: clamp(64px, 11vh, 132px) 0 72px;
  border-bottom: 1px solid #e5e7eb;
}

.hero h1 {
  margin: 26px 0 0;
  font-size: clamp(46px, 8.4vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #0a0a0a;
  max-width: 15ch;
}

.lead {
  margin: 36px 0 0;
  max-width: 60ch;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.45;
  color: #0a0a0a;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 44px;
}

.hero-aside {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid #e5e7eb;
}

.section-last {
  padding: 88px 0 96px;
  border-bottom: none;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 18ch;
}

.section-title.lg {
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-title-spaced {
  margin: 0 0 44px;
  max-width: 16ch;
}

.section-copy {
  margin: 22px 0 44px;
  max-width: 58ch;
  font-size: 19px;
  line-height: 1.55;
  color: #0a0a0a;
}

.section-copy.tight {
  margin: 26px 0 36px;
  max-width: 56ch;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0 40px;
  border-top: 1px solid #0a0a0a;
}

.focus-item {
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.focus-item-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.focus-item .num {
  font-size: 12px;
  color: #1d4ed8;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.focus-item h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.focus-item p {
  margin: 8px 0 0;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}

.offer-list {
  border-top: 1px solid #0a0a0a;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 24px 48px;
  padding: 28px 0;
  border-bottom: 1px solid #e5e7eb;
  align-items: start;
}

.offer-row h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.offer-row p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #0a0a0a;
  max-width: 52ch;
}

.legal-blurb {
  margin: 52px 0 0;
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* Inner pages */
.page-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 18ch;
}

.page-lead {
  margin: 28px 0 0;
  max-width: 64ch;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: #0a0a0a;
}

.kv-list {
  border-top: 1px solid #0a0a0a;
}

.kv-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.reach-list {
  margin-top: 52px;
}

.reach-list .kv-row {
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  padding: 22px 0;
}

.kv-k {
  font-size: 14.5px;
  color: #6b7280;
}

.kv-v {
  font-size: 15.5px;
  color: #0a0a0a;
  font-weight: 500;
}

.kv-v.multi {
  font-size: 16px;
  line-height: 1.5;
}

.kv-v .sub {
  color: #6b7280;
  font-weight: 400;
  font-size: 14px;
}

.kv-v.notice {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 56ch;
}

.reach-email {
  font-size: 18px;
  font-weight: 600;
  color: #1d4ed8;
  background-image: linear-gradient(#1d4ed8, #1d4ed8);
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size 0.12s ease;
  width: fit-content;
}

.reach-email:hover {
  background-size: 100% 1.5px;
}

.prose {
  max-width: 66ch;
}

.prose p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.6;
  color: #0a0a0a;
}

.prose p:last-child {
  margin-bottom: 0;
}

.principles-list {
  margin-top: 72px;
  border-top: 1px solid #0a0a0a;
}

.principle-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid #e5e7eb;
}

.principle-n {
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.85;
  font-weight: 700;
  color: #1d4ed8;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.principle-body {
  max-width: 60ch;
  padding-top: 8px;
}

.principle-body h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.025em;
  font-weight: 600;
}

.principle-body p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #0a0a0a;
}

.statements {
  border-top: 1px solid #0a0a0a;
}

.statement {
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
  max-width: 66ch;
}

.statement h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.statement p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: #0a0a0a;
}

.qa-list {
  border-top: 1px solid #0a0a0a;
}

.qa {
  display: grid;
  gap: 10px;
  padding: 34px 0;
  border-bottom: 1px solid #e5e7eb;
  max-width: 70ch;
}

.qa h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.qa p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #0a0a0a;
}

/* Footer */
.site-footer {
  border-top: 1px solid #0a0a0a;
  background: #ffffff;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 32px 0px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 40px;
  align-items: start;
}
.footer-inner2 {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 32px 70px 48px;
  display: flex;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.footer-meta {
  margin: 14px 0 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

.footer-notice {
  margin: 0;
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 88ch;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 32px 20px;
    z-index: 50;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-header {
    position: relative;
  }

  .split,
  .principle-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eyebrow.side {
    padding-top: 0;
  }

  .offer-row,
  .kv-row,
  .reach-list .kv-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-inner2 {
    padding: 0px 32px 50px 48px;
    gap: 20px;
    align-items: start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 72px);
  }

  .pad-page {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}

@media (max-width: 480px) {
  .wrap,
  .nav,
  .footer-inner2, .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-links {
    padding-left: 20px;
    padding-right: 20px;
  }
}
