:root {
  color: #18202e;
  background: #f6f5f1;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --ink: #18202e;
  --muted: #667085;
  --line: #dcdedb;
  --paper: #ffffff;
  --soft: #f1f0eb;
  --link: #254b97;
  --danger: #a83434;
  --success: #17623b;
  --accent: #3158d4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f6f5f1;
  color: var(--ink);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: var(--accent);
  content: "";
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid #172033;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #172033;
  color: white;
  border-radius: 5px;
  transform: translateY(-160%);
}

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

.page-width {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-inline: max(32px, calc((100% - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e7e7e2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 220px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.header-caption {
  color: #737b88;
  font-size: 13px;
}

.intake-notice {
  padding: 14px 18px;
  margin-block: 20px 0;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
  min-height: 630px;
  padding-block: 88px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #586174;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 22px;
  height: 3px;
  margin: 0 9px 3px 0;
  background: var(--accent);
  content: "";
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: clamp(48px, 6.2vw, 76px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.lead {
  max-width: 640px;
  margin: 0 0 34px;
  color: #596273;
  font-size: 18px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #172033;
  color: #fff;
  box-shadow: inset 4px 0 0 var(--accent);
}

.button-primary:hover {
  background: #232e43;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: #cfd3d9;
}

.route-sheet {
  position: relative;
  padding: 34px 36px 24px;
  background: var(--paper);
  border: 1px solid #dcdedb;
  box-shadow: 16px 18px 0 color-mix(in srgb, var(--accent) 12%, #edece7);
}

.route-sheet::before,
.route-sheet::after {
  position: absolute;
  height: 7px;
  border: 1px solid #dcdedb;
  border-bottom: 0;
  background: #fff;
  content: "";
}

.route-sheet::before {
  inset: -8px 18px auto;
}

.route-sheet::after {
  inset: -15px 34px auto;
}

.sheet-caption {
  margin: 0 0 8px;
  color: #7a8290;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-sheet ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-sheet li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 21px 0;
  border-bottom: 1px solid #e7e7e3;
}

.route-sheet li > span {
  padding-top: 2px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.route-sheet li strong,
.route-sheet li small {
  display: block;
}

.route-sheet li strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.route-sheet li small {
  color: #687182;
  font-size: 13px;
  line-height: 1.45;
}

.sheet-note {
  display: flex;
  gap: 9px;
  margin: 20px 0 0;
  color: #616b7c;
  font-size: 12px;
}

.sheet-note span {
  color: var(--accent);
  font-weight: 800;
}

.journey {
  background: #172033;
  color: #fff;
}

.journey ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 0;
  padding-block: 0;
  list-style: none;
}

.journey li + li {
  border-left: 1px solid #394256;
}

.journey a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 18px 28px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.journey a:hover {
  background: #202a40;
}

.journey span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #667086;
  border-radius: 50%;
  color: #cfd5df;
  font-size: 11px;
  font-weight: 800;
}

.section {
  padding-block: 108px;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.application-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:not(.eyebrow),
.application-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 64px;
  align-items: end;
}

.split-heading > p {
  padding-bottom: 5px;
  line-height: 1.65;
}

.contract-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd2d0;
  border-left: 1px solid #cfd2d0;
}

.contract-option {
  position: relative;
  min-width: 0;
}

.contract-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contract-option label {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  height: 100%;
  padding: 24px 22px 20px;
  background: #fff;
  border-right: 1px solid #cfd2d0;
  border-bottom: 1px solid #cfd2d0;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease;
}

.contract-option label:hover {
  background: #fbfbf9;
}

.contract-option input:focus-visible + label {
  position: relative;
  z-index: 1;
  outline: 3px solid #172033;
  outline-offset: -3px;
}

.contract-option input:checked + label {
  position: relative;
  z-index: 1;
  background: color-mix(in srgb, var(--accent) 7%, white);
  box-shadow: inset 0 4px 0 var(--accent), inset 0 0 0 2px var(--accent);
}

.contract-option input:disabled + label {
  cursor: default;
}

.contract-number {
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.contract-option strong {
  margin-bottom: 9px;
  font-size: 17px;
  line-height: 1.25;
}

.contract-option small {
  color: #6f7785;
  font-size: 13px;
  line-height: 1.45;
}

.contract-action {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  color: #2f3a4d;
  font-size: 12px;
  font-weight: 750;
}

.contract-option input:checked + label .contract-action {
  color: #172033;
}

.prepare-section {
  padding-block: 108px;
  background: #e9e8e2;
}

.prepare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.preparation-summary {
  display: flex;
  gap: 9px;
  margin: -16px 0 24px;
  color: #687182;
  font-size: 13px;
}

.preparation-summary strong {
  color: var(--ink);
}

.preparation-group h3 {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #cfd1ce;
  color: #6b7380;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preparation-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #cfd1ce;
}

.preparation-item label {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  min-width: 0;
  cursor: pointer;
}

.preparation-item input,
.consent-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-shape {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: #fff;
  border: 1px solid #aeb4b8;
  border-radius: 5px;
}

input:checked + .check-shape,
.consent-field input:checked + label .check-shape {
  background: #172033;
  border-color: #172033;
  box-shadow: inset 0 0 0 4px #172033;
}

input:checked + .check-shape::after,
.consent-field input:checked + label .check-shape::after {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.preparation-item input:focus-visible + .check-shape,
.consent-field input:focus-visible + label .check-shape {
  outline: 3px solid #172033;
  outline-offset: 3px;
}

.preparation-copy {
  min-width: 0;
}

.preparation-copy strong,
.preparation-copy small {
  display: block;
}

.preparation-copy strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.35;
}

.preparation-copy small {
  margin-top: 3px;
  color: #747c88;
  font-size: 12px;
}

.guidance-button {
  padding: 5px 0;
  border: 0;
  border-bottom: 1px dashed #8c929b;
  background: transparent;
  color: #525b6b;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.2;
}

.guidance-button:hover {
  color: #111827;
  border-bottom-color: #111827;
}

.optional-documents {
  margin-top: 18px;
  border-top: 1px solid #cfd1ce;
  border-bottom: 1px solid #cfd1ce;
}

.optional-documents summary,
.optional-uploads summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

.optional-documents summary::-webkit-details-marker,
.optional-uploads summary::-webkit-details-marker {
  display: none;
}

.optional-documents summary::after,
.optional-uploads summary::after {
  color: #707886;
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.optional-documents[open] summary::after,
.optional-uploads[open] summary::after {
  content: "−";
}

.optional-documents summary span,
.optional-uploads summary span {
  margin-left: auto;
  margin-right: 16px;
  color: #7b8390;
  font-size: 12px;
  font-weight: 500;
}

.optional-list {
  padding-bottom: 8px;
}

.downloads-panel {
  position: sticky;
  top: 28px;
  padding: 34px;
  background: #172033;
  color: #fff;
}

.downloads-panel .eyebrow {
  color: #c6ccda;
}

.downloads-panel h3 {
  margin: 0 0 13px;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.downloads-panel > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: #c1c8d4;
  font-size: 13px;
  line-height: 1.55;
}

.selected-documents {
  border-top: 1px solid #444d61;
}

.download-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  color: #fff;
  border-bottom: 1px solid #444d61;
  text-decoration: none;
}

.download-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-link span small,
.download-link span strong {
  display: block;
}

.download-link small {
  margin-bottom: 3px;
  color: #929caf;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.download-link strong {
  font-size: 13px;
  line-height: 1.35;
}

.download-link b {
  color: #fff;
  font-size: 18px;
}

.application-section {
  background: #fff;
}

.application-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(52px, 7vw, 100px);
  align-items: start;
}

.application-intro {
  position: sticky;
  top: 28px;
}

.privacy-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #e0e2e5;
}

.privacy-note > span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid #8c95a4;
  border-radius: 50%;
  color: #687284;
  font-size: 11px;
  font-weight: 800;
}

.privacy-note p {
  margin: 0;
  color: #6b7483;
  font-size: 12px;
  line-height: 1.55;
}

.hr-form {
  min-width: 0;
}

.form-contract {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--accent) 7%, #f5f5f2);
  border-left: 4px solid var(--accent);
}

.form-contract span {
  color: #737b89;
  font-size: 12px;
}

.form-contract strong {
  font-size: 14px;
}

.form-contract a {
  color: #3c4759;
  font-size: 12px;
}

.form-group {
  min-width: 0;
  margin: 0 0 42px;
  padding: 0;
  border: 0;
}

.form-group legend {
  float: left;
  width: 100%;
  margin: 0 0 5px;
  padding: 0 0 13px;
  border-bottom: 1px solid #dfe1e5;
  font-size: 19px;
  font-weight: 750;
}

.form-group legend + * {
  clear: both;
}

.group-description {
  margin: 0 0 22px;
  padding-top: 10px;
  color: #78808e;
  font-size: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > label,
.upload-heading label {
  font-size: 13px;
  font-weight: 700;
}

.required-mark {
  color: #b13e3e;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfbfa;
  border: 1px solid #ccd1d7;
  border-radius: 6px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #aab1bb;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #172033;
  outline: 2px solid #172033;
  outline-offset: 0;
  background: #fff;
}

.field input:disabled,
.field textarea:disabled,
.field select:disabled {
  color: #606977;
  background: #f1f2f2;
  cursor: default;
}

.field-hint {
  color: #7b8390;
  font-size: 11px;
}

.uploads-group .group-description {
  max-width: 650px;
}

.upload-summary {
  margin: 0 0 20px;
  padding: 10px 13px;
  background: #f4f4f1;
  color: #626b7b;
  font-size: 12px;
}

.uploads-list > h3 {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #dfe1e5;
  color: #707987;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.upload-field {
  padding: 20px 0;
  border-bottom: 1px solid #e1e3e6;
}

.upload-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 12px;
}

.upload-heading label,
.upload-heading small {
  display: block;
}

.upload-heading small {
  margin-top: 4px;
  color: #7d8592;
  font-size: 11px;
}

.file-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.file-input {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-picker {
  flex: 0 0 auto;
  padding: 9px 13px;
  background: #fff;
  border: 1px solid #bfc5cd;
  border-radius: 5px;
  color: #283447;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.file-picker:hover {
  border-color: #717a88;
}

.file-input:focus-visible + .file-picker {
  outline: 3px solid #172033;
  outline-offset: 3px;
}

.file-input:disabled + .file-picker {
  color: #808793;
  background: #f1f2f2;
  cursor: default;
}

.file-count {
  min-width: 0;
  overflow: hidden;
  color: #77808e;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-error {
  min-height: 0;
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 12px;
}

.field-error:empty {
  display: none;
}

.has-error .file-picker {
  border-color: var(--danger);
  box-shadow: 0 0 0 1px var(--danger);
}

.file-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.file-list:empty {
  display: none;
}

.file-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  background: #f5f6f6;
  border-top: 1px solid #e1e3e5;
}

.file-list li:last-child {
  border-bottom: 1px solid #e1e3e5;
}

.file-type {
  color: #6d7684;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.file-name {
  min-width: 0;
}

.file-name strong,
.file-name small {
  display: block;
}

.file-name strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-name small {
  color: #818894;
  font-size: 10px;
}

.file-list button {
  padding: 4px;
  border: 0;
  background: transparent;
  color: #8e3434;
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.optional-uploads {
  margin-top: 24px;
  border-top: 1px solid #dfe1e5;
  border-bottom: 1px solid #dfe1e5;
}

.optional-uploads > div {
  padding-bottom: 8px;
}

.consent-group {
  margin-bottom: 26px;
}

.consent-field {
  padding-top: 18px;
}

.consent-field label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  color: #424d60;
  font-size: 13px;
  line-height: 1.55;
}

.consent-field a {
  position: relative;
  z-index: 1;
}

.submit-row {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 20px;
  align-items: center;
}

.submit-row p {
  max-width: 380px;
  margin: 0;
  color: #767f8d;
  font-size: 11px;
  line-height: 1.45;
}

.submit-button {
  min-width: 220px;
}

.submit-button:disabled {
  opacity: 0.64;
  cursor: wait;
  transform: none;
}

.button-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid #ffffff66;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  display: none;
  margin-top: 24px;
}

.form-status.error,
.form-status.success {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid;
}

.form-status.error {
  background: #fff6f4;
  border-color: #e8bebb;
  color: #7f2929;
}

.form-status.success {
  background: #eff9f2;
  border-color: #acd4b8;
  color: #144b2e;
}

.status-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.form-status h3 {
  margin: 2px 0 6px;
  font-size: 17px;
}

.form-status p {
  margin: 3px 0;
  font-size: 13px;
}

.submission-number {
  margin-top: 12px !important;
  color: #42604e;
}

.submission-number code {
  overflow-wrap: anywhere;
}

.new-draft-button {
  margin-top: 16px;
}

.all-documents {
  padding-bottom: 120px;
}

.document-library {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d5d7d5;
  border-left: 1px solid #d5d7d5;
}

.library-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 102px;
  padding: 20px;
  background: #fff;
  color: var(--ink);
  border-right: 1px solid #d5d7d5;
  border-bottom: 1px solid #d5d7d5;
  text-decoration: none;
}

.library-link:hover {
  background: color-mix(in srgb, var(--accent) 5%, white);
}

.library-link small,
.library-link strong {
  display: block;
}

.library-link small {
  margin-bottom: 4px;
  color: #777f8b;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.library-link strong {
  font-size: 14px;
  line-height: 1.35;
}

.library-link b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #c9cdd2;
  border-radius: 50%;
  font-size: 15px;
}

.empty-copy {
  color: #747c88;
  font-size: 13px;
}

.site-footer {
  padding-block: 42px;
  background: #172033;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-grid p {
  max-width: 700px;
  margin: 3px 0;
  color: #b7becc;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
}

.footer-links a {
  color: #fff;
  font-size: 12px;
}

.guidance-dialog {
  width: min(540px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  padding: 36px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-top: 5px solid var(--accent);
  box-shadow: 0 26px 90px #10152244;
}

.guidance-dialog::backdrop {
  background: rgba(17, 24, 39, 0.67);
  backdrop-filter: blur(2px);
}

.guidance-dialog h2 {
  margin: 0 36px 18px 0;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.guidance-dialog p {
  color: #596273;
  font-size: 14px;
  line-height: 1.6;
}

.guidance-dialog .example-copy {
  padding: 13px 15px;
  background: #f4f4f1;
  color: #394456;
}

.dialog-formats {
  color: #747d8b !important;
  font-size: 11px !important;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #505a6b;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.dialog-close:hover {
  background: #f0f1f0;
}

.dialog-download {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 16px;
  padding: 13px 15px;
  background: #172033;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.noscript {
  position: fixed;
  inset: auto 20px 20px;
  z-index: 300;
  padding: 14px;
  color: #fff;
  background: #7f2929;
  text-align: center;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.78fr;
    gap: 50px;
  }

  .contract-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .prepare-layout {
    grid-template-columns: 1fr 0.8fr;
    gap: 42px;
  }

  .application-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 20px;
  }

  .page-width {
    width: min(100% - 36px, 620px);
  }

  .site-header {
    min-height: 66px;
    padding-inline: 18px;
  }

  .header-caption {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-block: 62px 74px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .lead {
    font-size: 16px;
  }

  .route-sheet {
    margin-top: 68px;
    padding: 28px 24px 20px;
    box-shadow: 10px 12px 0 color-mix(in srgb, var(--accent) 12%, #edece7);
  }

  .journey ol {
    width: 100%;
  }

  .journey a {
    justify-content: center;
    min-height: 58px;
    padding: 13px 8px;
    font-size: 11px;
  }

  .journey a span {
    display: none;
  }

  .section,
  .prepare-section {
    padding-block: 74px;
  }

  .split-heading,
  .prepare-layout,
  .application-layout {
    display: block;
  }

  .split-heading > p {
    margin-top: 18px !important;
  }

  .section-heading h2,
  .application-intro h2 {
    font-size: 38px;
  }

  .contract-options {
    grid-template-columns: 1fr;
  }

  .contract-option label {
    min-height: 175px;
  }

  .contract-number {
    margin-bottom: 20px;
  }

  .downloads-panel,
  .application-intro {
    position: static;
  }

  .downloads-panel {
    margin-top: 58px;
    padding: 28px 24px;
  }

  .application-intro {
    margin-bottom: 42px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .submit-row {
    grid-template-columns: 1fr;
  }

  .submit-button {
    width: 100%;
  }

  .document-library {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .page-width {
    width: calc(100% - 28px);
  }

  .brand-logo {
    width: 190px;
    height: 48px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .journey a {
    font-size: 10px;
  }

  .preparation-item {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .preparation-item .guidance-button {
    justify-self: start;
    margin-left: 35px;
  }

  .upload-heading {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .upload-heading .guidance-button {
    justify-self: start;
  }

  .file-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .file-count {
    white-space: normal;
  }

  .file-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .file-list button {
    grid-column: 2;
    justify-self: start;
    padding-left: 0;
  }

  .form-contract {
    grid-template-columns: 1fr auto;
  }

  .form-contract span {
    grid-column: 1 / -1;
  }

  .guidance-dialog {
    padding: 30px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
