:root {
  color-scheme: light;
  --ink: #101828;
  --muted: #576477;
  --paper: #f7f8fa;
  --line: #dce2e9;
  --blue: #174dba;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.wrap { width: min(100% - 3rem, 1240px); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); background: #fff; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { font-weight: 800; font-size: 1.8rem; letter-spacing: -.09em; text-decoration: none; line-height: 1; }
.brand::after { content: ''; display: inline-block; width: .22em; height: .22em; margin-left: .08em; background: var(--blue); border-radius: 50%; }
.header-link { font-size: .9rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: .3rem; }
.eyebrow { margin: 0 0 1.5rem; color: var(--blue); font-size: .875rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero { background: #fff; border-bottom: 1px solid var(--line); }
.hero-inner { min-height: 600px; padding-block: clamp(5rem, 10vw, 10rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .55fr); align-items: end; gap: 3rem; }
h1 { max-width: 850px; margin: 0; font-size: clamp(3.5rem, 7vw, 7.5rem); line-height: .98; letter-spacing: -.075em; font-weight: 800; }
.hero-detail { border-top: 2px solid var(--ink); padding-top: 1.5rem; }
.hero-detail p { margin: 0 0 2rem; color: var(--muted); font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.5; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 1rem; padding: .85rem 1.25rem; background: var(--blue); color: #fff; text-decoration: none; font-size: .95rem; font-weight: 700; }
.button:hover { background: #103c95; }
.content-section { padding-block: clamp(4rem, 8vw, 8rem); }
.section-grid { display: grid; grid-template-columns: minmax(0, .45fr) minmax(0, 1fr); gap: 3rem; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.055em; }
.section-copy { max-width: 780px; font-size: 1.125rem; line-height: 1.7; color: var(--muted); }
.section-copy p:first-child { margin-top: 0; }
.section-copy p:last-child { margin-bottom: 0; }
.service-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-list li { padding: 1.5rem 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 700; letter-spacing: -.025em; }
.outcomes { background: #fff; border-block: 1px solid var(--line); }
.approach { background: #e9effa; }
.steps { border-top: 1px solid #bdcce6; }
.step { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1.75rem 0; border-bottom: 1px solid #bdcce6; }
.step-number { color: var(--blue); font-size: .875rem; font-weight: 800; }
.step h3 { margin: 0 0 .5rem; font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -.035em; }
.step p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.0625rem; line-height: 1.6; }
.related { background: #fff; }
.contact { background: var(--ink); color: #fff; }
.contact .eyebrow { color: #8fb1ff; }
.contact p { max-width: 680px; font-size: 1.125rem; line-height: 1.6; color: #cdd5df; }
.contact .button { background: #fff; color: var(--ink); }
.contact .button:hover { background: #dce8ff; }
.site-footer { background: var(--ink); color: #cdd5df; border-top: 1px solid #344054; }
.footer-inner { padding-block: 2rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; }
@media (max-width: 760px) {
  .wrap { width: min(100% - 2rem, 1240px); }
  .header-inner { min-height: 72px; }
  .hero-inner, .section-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: 0; padding-block: 5rem; gap: 3rem; }
  .footer-inner { flex-direction: column; }
  h1 { font-size: clamp(2.75rem, 11vw, 4.75rem); }
  .step { grid-template-columns: 2.5rem 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
