:root {
  color-scheme: light;
  --navy-950: #0b1f33;
  --navy-800: #163a59;
  --blue-700: #245f84;
  --blue-100: #dcecf5;
  --blue-50: #f2f8fb;
  --ink: #17212b;
  --muted: #566474;
  --line: #cbd7df;
  --paper: #ffffff;
  --focus: #b34f00;
  --content-width: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
}

body {
  margin: 0;
}

a {
  color: var(--blue-700);
  text-underline-offset: 0.2em;
}

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

.site-header,
main,
footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5rem;
  border-bottom: 1px solid var(--line);
}

.product-name {
  min-width: 0;
  max-width: 30rem;
  overflow-wrap: anywhere;
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

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

nav a {
  color: var(--navy-800);
  font-weight: 700;
}

.hero {
  max-width: 54rem;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

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

h1,
h2 {
  min-width: 0;
  max-width: 100%;
  margin-top: 0;
  overflow-wrap: anywhere;
  color: var(--navy-950);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

p,
li {
  font-size: 1.05rem;
}

.summary {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 2px solid var(--navy-800);
  border-radius: 0.35rem;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--paper);
  background: var(--navy-800);
}

.button.primary:hover {
  background: var(--navy-950);
}

.button.secondary {
  color: var(--navy-800);
  background: transparent;
}

.button.secondary:hover {
  background: var(--blue-50);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.workflow {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow li {
  position: relative;
  margin: 0;
  padding: 0 0 1.5rem 3rem;
  counter-increment: workflow;
}

.workflow li::before {
  position: absolute;
  top: -0.15rem;
  left: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--blue-100);
  content: counter(workflow);
  font-weight: 700;
}

.workflow li:last-child {
  padding-bottom: 0;
}

.trust-section {
  background: linear-gradient(to right, transparent, var(--blue-50) 18%, var(--blue-50) 82%, transparent);
}

.trust-copy p:first-child {
  margin-top: 0;
}

.text-link {
  font-weight: 700;
}

.support-panel {
  margin-block: clamp(4rem, 9vw, 8rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  color: var(--paper);
  background: var(--navy-950);
}

.support-panel .section-label,
.support-panel h2,
.support-panel a {
  color: var(--paper);
}

.support-panel p:not(.section-label) {
  max-width: 44rem;
}

.support-panel .button {
  border-color: var(--paper);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.policy-layout aside {
  align-self: start;
}

.policy-layout aside h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.policy-layout aside p:not(.eyebrow) {
  color: var(--muted);
}

.policy-content {
  max-width: 48rem;
}

.policy-content section {
  padding: 0 0 2.5rem;
}

.policy-content h2 {
  font-size: 1.55rem;
}

.policy-content p,
.policy-content li {
  line-height: 1.7;
}

.policy-content li + li {
  margin-top: 0.5rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
  font-size: 0.95rem;
}

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 48rem) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    padding-block: 1.25rem;
  }

  .content-section,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-width: 0;
    max-width: 100%;
    padding-block: 4rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
