/**
 * Shell behaviour, local fonts, and v4 pieces the theme file does not cover.
 */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url("fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("fonts/poppins-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("fonts/roboto-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
.req { color: var(--required-mark, #c0392b); font-weight: 600; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

[data-mobile-only] { display: none; }

@media (max-width: 640px) {
  [data-desktop-only] { display: none !important; }
  [data-mobile-only] { display: flex !important; }
}

.bond-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(18px, 3.5vw, 32px) clamp(14px, 4vw, 28px) 0;
}
.bond-main .bond-legal-notice {
  max-width: none;
  padding: 0 0 52px;
}
.bond-main.is-complete .bond-legal-notice {
  padding: 24px 0 52px;
}
.bond-declaration[hidden] {
  display: none !important;
}

.screen { display: none; }
.screen.active { display: block; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.choice-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.choice-stack .choice-btn {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #3a3a3a;
  cursor: pointer;
}

.choice-btn {
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.choice-btn--jurisdiction { width: 100%; }

.form-group { margin: 0; }
.details-stack { display: flex; flex-direction: column; gap: 26px; }
.email-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.email-pair .form-group {
  flex: 1 1 290px;
  max-width: 340px;
}

.entity-placeholder {
  border: 1px dashed #c2ccd6;
  border-radius: 8px;
  padding: 34px 22px;
  text-align: center;
  background: #fcfcfd;
  font-size: 15px;
  line-height: 1.6;
  color: #8b9199;
}

.people-list { display: flex; flex-direction: column; gap: 10px; max-width: 700px; }
.people-row { display: flex; gap: 10px; align-items: center; }
.people-row input { flex: 1 1 auto; min-width: 0; }
.btn-remove {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: #6f7479;
  background: #fff;
  border: 1px solid #c2ccd6;
  border-radius: 8px;
  cursor: pointer;
}
.btn-text {
  margin-top: 12px;
  background: none;
  border: none;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
}

.input-wide { max-width: 700px; }
.input-narrow { max-width: 340px; }

.stepper-mobile {
  display: none;
  flex-direction: column;
  gap: 11px;
  margin-top: 24px;
}
.stepper-mobile__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.stepper-mobile__kicker {
  font: 600 11px/1 Montserrat, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f7479;
}
.stepper-mobile__label {
  font-size: 14.5px;
  font-weight: 600;
  color: #315c82;
}
.stepper-mobile__track {
  height: 4px;
  border-radius: 2px;
  background: #dfe3e7;
  overflow: hidden;
}
.stepper-mobile__fill {
  height: 100%;
  border-radius: 2px;
  background: #2974a3;
  transition: width 0.25s;
}

.bond-hero .stepper-item.upcoming { cursor: default; }
.bond-hero .stepper-item.upcoming .stepper-label { color: #6b7178; }

.submit-error {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: #fdecea;
  color: #8a1f11;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(8px, 2vw, 20px) 0 clamp(30px, 5vw, 56px);
}
.confirm__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eefaef;
  border: 2px solid #00a806;
  color: #00a806;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.confirm--error .confirm__icon {
  background: #fdecea;
  border-color: #c0392b;
  color: #c0392b;
}
.confirm__kicker {
  font: 600 11px/1 Montserrat, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f7479;
  margin-bottom: 12px;
}
.confirm h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 29px);
  letter-spacing: -0.03em;
  color: #3a3a3a;
  line-height: 1.25;
}
.confirm__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #6c7177;
  max-width: 56ch;
  text-wrap: pretty;
}
.confirm__meta {
  margin-top: 26px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  padding: 18px 30px;
  background: #f6f7f8;
  border-radius: 8px;
}
.confirm__meta-item { text-align: left; }
.confirm__meta-label {
  font: 600 10.5px/1 Montserrat, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 6px;
}
.confirm__ref {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2974a3;
}
.confirm__when {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #3a3a3a;
}
.confirm__next {
  width: 100%;
  max-width: 640px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #e8eef3;
  text-align: left;
}
.confirm__next-title {
  font: 600 11px/1 Montserrat, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 16px;
}
.confirm__steps { display: flex; flex-direction: column; gap: 14px; }
.confirm__step { display: flex; gap: 14px; align-items: flex-start; }
.confirm__step-num {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eff5f9;
  color: #2974a3;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.confirm__step-text { font-size: 15.5px; line-height: 1.6; color: #4d4d4d; }
.confirm__close {
  width: 100%;
  max-width: 640px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #e8eef3;
  font-size: 13.5px;
  color: #6f7479;
}

.btn-next:disabled { opacity: 0.6; cursor: wait; }

.callout__body {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
}

.elig-q {
  font-size: 16px;
  font-weight: 600;
  color: #4d4d4d;
  margin-bottom: 11px;
  line-height: 1.5;
}

.choice-btn__check[hidden] { display: none !important; }
