:root {
  color-scheme: light;
  font-family: Georgia, "Times New Roman", serif;
  font-synthesis: none;
  --purple: #5c5078;
  --purple-dark: #433a58;
  --purple-soft: #eeeaf3;
  --green: #a4cc38;
  --red: #d02028;
  --orange: #f48020;
  --ink: #26232b;
  --muted: #65616a;
  --line: #bcbcc0;
  --paper: #ffffff;
  --blue-field: #f4f7fc;
  --evergreen: #183b35;
  --sage: #dde8e1;
  --mist: #f2f5f0;
  --content: 73.75rem;
  --measure: 45rem;
  --radius: 0.25rem;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
button {
  font: inherit;
}
html {
  min-width: 20rem;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.65;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0.2rem solid var(--red);
  outline-offset: 0.2rem;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #dedbe3;
  background: var(--paper);
}
.header-inner {
  display: flex;
  width: min(1180px, calc(100% - 80px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}
.brand {
  flex: 0 0 auto;
  width: 184px;
}
.desktop-nav {
  display: none;
}
.mobile-menu {
  position: relative;
}
.mobile-menu > summary {
  min-width: 4rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--purple);
  cursor: pointer;
  list-style: none;
  text-align: center;
}
.mobile-menu > summary::-webkit-details-marker {
  display: none;
}
.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(21rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 1rem 2rem rgb(38 35 43 / 14%);
}
.mobile-menu p {
  margin: 0;
  color: var(--purple);
  font-weight: 700;
}
.mobile-menu ul {
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}
.mobile-menu ul + ul {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.3rem 0.2rem;
  text-decoration: none;
}
.content,
.content-narrow,
.section-grid,
.card-grid,
.contact-band,
.resource-grid {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
}
.content-narrow {
  max-width: var(--measure);
}

.build-notice {
  width: min(var(--measure), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(4rem, 10vw, 8rem);
}
.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--blue-field);
}
.page-hero--purple {
  color: var(--paper);
  background: var(--purple);
}
.page-hero--evergreen {
  color: var(--mist);
  background: var(--evergreen);
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-hero--purple .eyebrow,
.page-hero--evergreen .eyebrow {
  color: var(--green);
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}
.hero-intro {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  background: var(--purple);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}
.page-hero--purple .button,
.page-hero--evergreen .button {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--purple-dark);
}
.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--purple);
  font-weight: 700;
  text-underline-offset: 0.3rem;
}
.page-hero--purple .text-link,
.page-hero--evergreen .text-link {
  color: inherit;
}
.section {
  padding: clamp(3.75rem, 8vw, 6.5rem) 0;
}
.section--purple-soft {
  background: var(--purple-soft);
}
.section--purple {
  color: var(--paper);
  background: var(--purple);
}
.section--evergreen {
  color: var(--mist);
  background: var(--evergreen);
}
.section-grid {
  display: grid;
  gap: 2rem;
}
.section-copy {
  max-width: 45rem;
}
.section-copy > :first-child,
.safety-notice > :first-child {
  margin-top: 0;
}
.section-copy > :last-child,
.safety-notice > :last-child {
  margin-bottom: 0;
}
.section-copy > img {
  width: 100%;
  max-height: 28rem;
  margin-bottom: 1.5rem;
  object-fit: contain;
  background: var(--blue-field);
}
.plain-list,
.check-list,
.numbered-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
}
.numbered-list {
  list-style: none;
  counter-reset: steps;
  padding: 0;
}
.numbered-list li {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  counter-increment: steps;
}
.numbered-list li::before {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: counter(steps, decimal-leading-zero);
  font-weight: 700;
}
.card-grid,
.resource-grid {
  display: grid;
  gap: 1rem;
}
.card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.card p {
  margin-bottom: 0;
  color: var(--muted);
}
.card a {
  font-weight: 700;
  text-underline-offset: 0.25rem;
}
.contact-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-block: clamp(3rem, 8vw, 6rem);
  padding: clamp(1.75rem, 5vw, 3rem);
  border-top: 0.3rem solid var(--purple);
  background: var(--purple-soft);
}
.contact-band p {
  max-width: 45rem;
  margin-bottom: 0;
}
.contact-band .button {
  justify-self: start;
}
.safety-notice {
  padding: 1.25rem;
  border-left: 0.3rem solid var(--orange);
  background: #fff7ed;
  color: var(--ink);
}
.prose {
  width: min(var(--measure), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.prose h2 {
  margin-top: 2.75rem;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
}
.prose h3 {
  margin-top: 2rem;
}
.prose p,
.prose li {
  max-width: 70ch;
}
.site-footer {
  padding: 48px max(40px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr;
  gap: 42px;
}
.footer-brand img {
  width: 180px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.site-footer a,
.footer-social a {
  color: #dedbe3;
  text-decoration: none;
}
.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.site-footer p {
  margin: 0 0 8px;
  color: #cfccd2;
  line-height: 1.4;
}
.footer-brand p:last-of-type {
  max-width: 18rem;
}
.site-footer a {
  display: block;
  color: #cfccd2;
  line-height: 1.4;
}
.footer-social a:hover {
  color: var(--paper);
}
.footer-legal {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding-top: 32px;
  border-top: 1px solid #4c4850;
  color: #dedbe3;
}
.footer-legal p {
  margin: 0 0 8px;
}
label {
  display: block;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.35rem;
  padding: 0.7rem;
  border: 1px solid var(--muted);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
textarea {
  min-height: 9rem;
  resize: vertical;
}
.form-grid {
  display: grid;
  gap: 1.25rem;
}
.field-help {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
@media (min-width: 48rem) {
  .section-grid {
    grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 8vw, 7rem);
  }
  .card-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-band {
    grid-template-columns: 1fr auto;
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}
@media (min-width: 68rem) {
  .mobile-menu {
    display: none;
  }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 23px;
    font-size: 13px;
  }
  .desktop-nav > a,
  .help-menu > summary {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
  }
  .desktop-nav a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 9px;
  }
  .help-menu {
    position: relative;
  }
  .help-menu > summary {
    cursor: pointer;
    list-style: none;
  }
  .help-menu > summary::-webkit-details-marker {
    display: none;
  }
  .help-menu ul {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 240px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 1rem 2rem rgb(38 35 43 / 14%);
    list-style: none;
  }
  .help-menu li + li {
    margin-top: 4px;
  }
  .help-menu li a {
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 0 10px;
    text-decoration: none;
  }
  .help-menu li a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
  .login-link,
  .nav-contact {
    padding: 8px 12px;
    border: 1px solid;
    text-decoration: none;
  }
  .login-link {
    border-color: var(--evergreen);
    background: var(--evergreen);
    color: var(--paper);
    font-size: 12px;
    font-weight: 600;
  }
  .nav-contact {
    border-color: var(--purple);
  }
  .card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .header-inner {
    width: calc(100% - 40px);
    min-height: 72px;
  }
  .brand {
    width: 165px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media (forced-colors: active) {
  .button,
  .safety-notice,
  .contact-band {
    border: 2px solid ButtonText;
  }
}
