:root {
  --navy: #27234e;
  --blue: #406db3;
  --muted: #686868;
  --page-bg: #f0f0f0;
  --panel-blue: rgba(64, 109, 179, 0.1);
  --section-blue: rgba(64, 109, 179, 0.05);
  --panel-red: rgba(255, 70, 88, 0.1);
  --shadow: 0 6px 14px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
  --content-width: 1680px;
  --copy-width: 840px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--navy);
  font-family: Helvetica, Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a,
button {
  transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease, opacity 200ms ease, transform 200ms ease;
}

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.4rem;
}

li+li {
  margin-top: 0.75rem;
}

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

.hero {
  --hero-min-height: clamp(740px, 95vh, 960px);
  --hero-background-position: 50% top;
  --hero-logo-width: clamp(220px, 25vw, 627px);
  --hero-copy-width: min(480px, 38vw);
  --hero-copy-background: transparent;
  --hero-copy-padding: 0;
  --hero-copy-radius: 0;
  --hero-padding-top: 300px;
  --hero-padding-bottom: clamp(140px, 12vw, 180px);
  --hero-cta-margin-top: clamp(2rem, 3.5vw, 3.5rem);
  --hero-cta-min-height: clamp(48px, 5.5vw, 64px);
  --hero-cta-padding-x: clamp(1.5rem, 3.5vw, 2.5rem);
  position: relative;
  min-height: var(--hero-min-height);
  overflow: clip;
  background: linear-gradient(160deg, #27234e 0%, #2d2a5a 35%, #406db3 100%);
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-background-position);
}

.hero__logo {
  width: var(--hero-logo-width);
  height: auto;
  aspect-ratio: 627 / 208;
  object-fit: contain;
}

.hero__logo-link {
  text-decoration: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.hero__logo-link:hover {
  opacity: 0.9;
}

.hero__inner {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
}

.hero__copy {
  width: min(var(--hero-copy-width), 100%);
  background: var(--hero-copy-background);
  border-radius: var(--hero-copy-radius);
  padding: var(--hero-copy-padding);
}

.hero__title {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(14px, 1rem + 1.6vw, 34px);
  line-height: 1.25;
  font-weight: 700;
}

.hero__title-primary {
  color: var(--navy);
}

.hero__title-primary:first-child {
  display: block;
  width: 100%;
}

.hero__title-accent {
  color: var(--blue);
}

.hero__cta {
  margin-top: var(--hero-cta-margin-top);
  display: inline-flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  min-height: var(--hero-cta-min-height);
  padding: 0 var(--hero-cta-padding-x);
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  width: fit-content;
}

.hero__cta:hover,
.manual-toggle:hover {
  background: #355f9f;
}

.hero__cta-text {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(14px, 1.8vw, 24px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__cta-icon {
  display: block;
  flex: none;
  width: clamp(20px, 2.2vw, 36px);
  height: clamp(20px, 2.2vw, 36px);
  transform: scaleY(-1);
}

@media (max-width: 1200px) {
  .hero {
    --hero-min-height: clamp(680px, 90vh, 880px);
    --hero-padding-top: 300px;
  }

  .hero__title {
    line-height: 1.25;
  }
}

@media (max-width: 1024px) {
  .hero {
    --hero-min-height: clamp(640px, 80vh, 780px);
    --hero-background-position: 64% top;
    --hero-logo-width: clamp(210px, 31vw, 360px);
    --hero-copy-width: min(500px, 56vw);
    --hero-padding-top: 300px;
    --hero-padding-bottom: 120px;
    --hero-cta-margin-top: clamp(1.8rem, 3vw, 2.8rem);
    --hero-cta-min-height: 56px;
    --hero-cta-padding-x: clamp(1.25rem, 2.5vw, 2rem);
  }

  .page-main {
    margin-top: clamp(-82px, -6.5vw, -46px);
  }
}

@media (max-width: 840px) {
  .hero {
    --hero-min-height: clamp(600px, 76vh, 720px);
    --hero-background-position: 74% top;
    --hero-logo-width: clamp(185px, 34vw, 300px);
    --hero-copy-width: 560px;
    --hero-copy-background: rgba(240, 240, 240, 0.9);
    --hero-copy-padding: 1rem 1.1rem 1.1rem;
    --hero-copy-radius: 6px;
    --hero-padding-top: 300px;
    --hero-padding-bottom: 110px;
    --hero-cta-margin-top: 1.85rem;
    --hero-cta-min-height: 52px;
  }

  .hero__copy {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .hero__title {
    font-size: clamp(18px, 1.1rem + 1.2vw, 28px);
  }

  .hero__cta-text {
    font-size: clamp(13px, 1.6vw, 16px);
  }

  .hero__cta-icon {
    width: clamp(18px, 2.2vw, 24px);
    height: clamp(18px, 2.2vw, 24px);
  }

  .page-main {
    margin-top: clamp(-88px, -10vw, -58px);
  }
}



.page-main {
  margin-top: clamp(-118px, -8vw, -72px);
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.content-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-block {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 6rem);
}

.section-block+.section-block {
  padding-top: 0;
}

.section-block--tinted {
  background: var(--section-blue);
}

.automatic.section-block {
  padding-top: clamp(1.65rem, 3.3vw, 2.475rem);
}

.intro.section-block {
  padding-top: clamp(1.65rem, 3.3vw, 2.475rem);
  padding-bottom: 3.5rem;
}

.manual.section-block {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.section-heading {
  width: min(var(--copy-width), 100%);
  margin: 0 auto;
}

.section-heading--centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--blue);
  font-size: clamp(2rem, 2.4vw, 36px);
  line-height: 1.18;
  font-weight: 700;
}

.section-heading h4 {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.section-heading p,
.section-heading li,
.prose-block p,
.prose-block li,
.manual-step p,
.manual-step li,
.manual-final-note li,
.notice-box p,
.notice-box li {
  font-size: 18px;
  line-height: 1.35;
}

.section-heading h2+p {
  margin-top: 1.5rem;
}

.section-heading p+p,
.section-heading p+ul,
.section-heading ul+p,
.prose-block p+p,
.prose-block p+ul,
.prose-block p+ol,
.prose-block p+h4,
.prose-block ul+p,
.prose-block ol+p,
.prose-block ul+h4,
.prose-block ol+h4,
.manual-step h4+p,
.manual-step p+ul,
.manual-step ul+h4,
.manual-step p+h4,
.manual-step ul+p,
.manual-final-note,
.notice-box p+p,
.notice-box p+ul,
.notice-box ul+p {
  margin-top: 1rem;
}

.section-heading ul+p {
  margin-top: 2rem;
}

.automatic .section-heading p+h4 {
  margin-top: 2.25rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.option-card {
  border-radius: 5px;
  background: var(--panel-blue);
  padding: 1.75rem 2rem;
  text-align: center;
}

.option-card h3 {
  color: var(--blue);
  font-size: clamp(1.75rem, 2.2vw, 30px);
  line-height: 1.2;
  font-weight: 700;
}

.option-card p {
  margin-top: 0.35rem;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.option-card__body {
  color: var(--navy);
  font-weight: 400;
}

.option-card__accent {
  color: var(--blue);
}

.section-note {
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.updates__heading strong,
.manual-step strong,
.manual-final-note strong {
  color: var(--blue);
}

.updates__heading p+p {
  margin-top: 1rem;
}

.updates__image {
  margin: 2rem auto 0;
  width: min(1240px, 92%);
  min-height: 280px;
  background: var(--section-blue);
  object-fit: contain;
}

.notice-box {
  width: min(1050px, 100%);
  margin: 1.875rem auto 0;
  border-radius: 5px;
  padding: 1.875rem 2.5rem;
}

@media (min-width: 961px) {
  .option-grid {
    width: min(930px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .notice-box {
    width: min(930px, 100%);
  }
}

.notice-box--warning {
  background: var(--panel-red);
}

.notice-box--info {
  background: var(--panel-blue);
}

.notice-box h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.notice-box--warning h3 {
  color: var(--navy);
  font-size: 18px;
}

.notice-box--info h3 {
  color: var(--blue);
}

.copy-column {
  width: min(var(--copy-width), 100%);
  margin: 0 auto;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.choice-card {
  min-height: 123px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--blue);
  padding: 1.5rem 1.75rem;
}

.choice-card p {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.automatic__copy {
  margin-top: 2rem;
}

.prose-block h4 {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.automatic__copy a {
  color: var(--blue);
  text-decoration: underline;
}

.automatic__copy a:hover {
  opacity: 0.8;
}

.nested-list {
  padding-left: 2.75rem;
  margin-top: 0.5rem;
}

.manual-toggle {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
  padding: 0 1.4rem;
  border: 0;
  border-radius: 2.5px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.manual-toggle__label {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.manual-toggle__icon {
  width: 19.344px;
  height: 11.016px;
  pointer-events: none;
}

.manual-toggle[aria-expanded='true'] .manual-toggle__icon {
  transform: rotate(180deg);
}

.hero__cta:focus-visible,
.manual-toggle:focus-visible,
.automatic__copy a:focus-visible {
  outline: 2px solid #9ec0f1;
  outline-offset: 4px;
}

.manual-details {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 1.75rem;
  opacity: 0;
  transform: translateY(-18px);
  transition: grid-template-rows 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease, transform 300ms ease;
}

.manual-details.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.manual-details__grid {
  overflow: hidden;
  display: grid;
  gap: 1.75rem;
}

.manual-step h4 {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.manual-image {
  width: 100%;
  min-height: 200px;
  background: var(--section-blue);
  object-fit: contain;
}

.manual-image--wide {
  max-width: 690px;
}

.manual-image--narrow {
  max-width: 520px;
}

.site-footer {
  margin-top: 16px;
  background: var(--navy);
  color: #fff;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 280px;
  padding: 2.5rem 0 3rem;
}

.site-footer__logo {
  width: 228px;
  height: auto;
  aspect-ratio: 260 / 90;
  object-fit: contain;
}

.site-footer__logo-link {
  text-decoration: none;
  display: block;
}

.site-footer__logo-link:hover {
  opacity: 0.9;
}

.site-footer__copy {
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.site-footer__copy a {
  color: inherit;
  text-decoration: none;
}

.site-footer__copy strong {
  display: block;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 700;
}

.site-footer__copy p+p {
  margin-top: 6px;
}

.site-footer__copy a:hover {
  opacity: 0.8;
  text-decoration: none;
}

@media (max-width: 960px) {
  .page-width {
    width: min(var(--content-width), calc(100% - 1.75rem));
  }

  .section-block {
    padding: 2.75rem 1.35rem;
  }

  .manual.section-block {
    padding-bottom: 1.75rem;
  }

  .section-heading h2 {
    font-size: 30px;
    line-height: 1.14;
  }

  .section-heading h4,
  .prose-block h4,
  .manual-step h4 {
    font-size: 18px;
  }

  .section-heading p,
  .section-heading li,
  .prose-block p,
  .prose-block li,
  .manual-step p,
  .manual-step li,
  .manual-final-note li,
  .notice-box p,
  .notice-box li,
  .section-note {
    font-size: 18px;
  }

  .notice-box {
    margin-top: 1.5rem;
    padding: 1.375rem 1.5rem;
  }

  .notice-box h3 {
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .notice-box--warning h3 {
    font-size: 17px;
  }

  .notice-box--info h3 {
    font-size: 24px;
  }

  .updates__heading p+p {
    margin-top: 0.75rem;
  }

  .updates__image {
    width: min(1240px, 100%);
    margin-top: 1.5rem;
  }

  .option-card {
    padding: 1.375rem 1.25rem;
  }

  .option-card h3 {
    font-size: 24px;
    line-height: 1.16;
  }

  .option-card p {
    font-size: 17px;
  }

  .choice-card {
    min-height: 98px;
    padding: 1rem;
  }

  .choice-card p {
    font-size: 16px;
  }

  .manual-toggle {
    margin-top: 1.5rem;
    min-height: 38px;
    padding: 0 1.2rem;
  }

  .manual-toggle__label {
    font-size: 16px;
  }

  .manual-toggle__icon {
    width: 18px;
    height: 10px;
  }

  .site-footer__inner {
    min-height: 220px;
    gap: 0.875rem;
    padding: 1.75rem 0 2rem;
  }

  .site-footer__logo {
    width: 210px;
  }

  .page-main {
    margin-top: clamp(-60px, -4.8vw, -28px);
  }
}

@media (max-width: 700px) {
  .page-width {
    width: min(var(--content-width), calc(100% - 1rem));
  }

  .hero {
    --hero-min-height: clamp(580px, 72vh, 680px);
    --hero-background-position: 90% top;
    --hero-copy-width: 100%;
    --hero-copy-background: rgba(240, 240, 240, 0.92);
    --hero-copy-padding: 1rem 1.1rem 1.1rem;
    --hero-copy-radius: 6px;
    --hero-padding-top: 300px;
    --hero-padding-bottom: 100px;
  }

  .hero__title {
    font-size: clamp(16px, 1rem + 1vw, 24px);
  }

  .page-main {
    margin-top: clamp(-85px, -12vw, -60px);
  }

  .section-block {
    padding: 1.75rem 0.9rem;
  }

  .intro.section-block,
  .automatic.section-block,
  .manual.section-block {
    padding-top: 1.75rem;
  }

  .option-grid,
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .option-card,
  .choice-card,
  .notice-box {
    border-radius: 4px;
  }

  .option-card {
    padding: 0.95rem 0.9rem;
  }

  .option-card h3 {
    font-size: 19px;
    line-height: 1.12;
  }

  .option-card p,
  .choice-card p,
  .section-heading p,
  .section-heading li,
  .prose-block p,
  .prose-block li,
  .manual-step p,
  .manual-step li,
  .manual-final-note li,
  .notice-box p,
  .notice-box li,
  .section-note {
    font-size: 15px;
    line-height: 1.28;
  }

  .section-heading p+p,
  .section-heading p+ul,
  .section-heading ul+p,
  .prose-block p+p,
  .prose-block p+ul,
  .prose-block p+ol,
  .prose-block ul+p,
  .prose-block ol+p,
  .prose-block ul+h4,
  .prose-block ol+h4,
  .manual-step h4+p,
  .manual-step p+ul,
  .manual-step ul+h4,
  .manual-step p+h4,
  .manual-step ul+p,
  .manual-final-note,
  .notice-box p+p,
  .notice-box p+ul,
  .notice-box ul+p {
    margin-top: 0.75rem;
  }

  .section-heading h4,
  .prose-block h4,
  .manual-step h4 {
    font-size: 16px;
    line-height: 1.25;
  }

  .section-heading h2 {
    font-size: 23px;
    line-height: 1.1;
  }

  .section-heading h2+p {
    margin-top: 1rem;
  }

  .section-note {
    margin-top: 1.25rem;
  }

  .automatic .section-heading p+h4 {
    margin-top: 1.25rem;
  }

  .notice-box {
    margin-top: 1.25rem;
    padding: 0.9rem;
  }

  .notice-box h3 {
    font-size: 20px;
    line-height: 1.08;
  }

  .notice-box--warning h3 {
    font-size: 16px;
  }

  .notice-box ul,
  .notice-box ol {
    padding-left: 1.15rem;
  }

  .notice-box p+ul,
  .notice-box ul+p {
    margin-top: 0.75rem;
  }

  .choice-card {
    min-height: 76px;
    padding: 0.85rem 0.9rem;
  }

  .choice-card p {
    font-size: 15px;
    line-height: 1.22;
  }

  .updates__image {
    margin-top: 1.25rem;
    min-height: 0;
    border-radius: 4px;
  }

  .manual-toggle {
    margin-top: 1.25rem;
    min-height: 40px;
    padding: 0 0.95rem;
  }

  .manual-toggle__label {
    font-size: 14px;
  }

  .manual-toggle__icon {
    width: 16px;
    height: 9px;
  }

  .section-heading h2,
  .option-card h3,
  .notice-box h3 {
    hyphens: auto;
  }

  .manual-details__grid {
    gap: 1.25rem;
  }

  .manual-details {
    margin-top: 1.25rem;
  }

  .prose-block ul,
  .prose-block ol,
  .manual-step ul,
  .manual-final-note,
  .nested-list {
    padding-left: 1.25rem;
  }

  .prose-block li+li,
  .manual-step li+li,
  .manual-final-note li+li {
    margin-top: 0.5rem;
  }

  .manual-image {
    min-height: 0;
    border-radius: 4px;
  }

  .site-footer__logo {
    width: min(205px, 58vw);
  }

  .site-footer__inner {
    min-height: 176px;
    padding: 1.25rem 0 1.4rem;
    gap: 0.8rem;
  }

  .site-footer__copy {
    font-size: 15px;
    line-height: 1.22;
  }

  .site-footer__copy strong {
    font-size: 17px;
  }

  .site-footer__copy p+p {
    margin-top: 4px;
  }
}