:root {
  --orange: #f15a24;
  --blue: #2253f1;
  --ink: #1f2430;
  --muted: #6b7280;
  --rule: #dde1e6;
  --band: #f5f6f8;
  --page-width: 70rem;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 3rem), var(--page-width));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.65rem 0.85rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }

.site-header { border-bottom: 1px solid var(--rule); }

.header-content,
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-content { min-height: 5.5rem; }

.brand { display: block; line-height: 0; }

.brand img { width: min(15rem, 50vw); height: auto; }

nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }

nav a,
.site-footer a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

nav a:hover,
.site-footer a:hover { color: var(--blue); }

.hero { padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem); }

.hero-content { max-width: 55rem; }

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 { margin-top: 0; line-height: 1.15; }

h1 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
}

h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }

.lead {
  max-width: 42rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.button {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.button:hover { background: #1741c5; }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.site-footer { padding: 1.5rem 0; border-top: 1px solid var(--rule); }

.site-footer p { margin: 0; color: var(--muted); font-size: 0.9rem; }

@media (max-width: 44rem) {
  .header-content,
  .footer-content { align-items: flex-start; flex-direction: column; justify-content: center; }

  .header-content { padding: 1.25rem 0; }

  h1 { max-width: 16ch; }

}
