:root {
  --navy: #112e57;
  --navy-deep: #081d3d;
  --orange: #f15a24;
  --orange-text: #a33a00;
  --cta: #b83f00;
  --cta-hover: #923200;
  --green: #2f9d62;
  --blue: #3178c6;
  --paper: #ffffff;
  --page: #f3f7fc;
  --soft-blue: #eaf3fd;
  --ink: #0b213f;
  --muted: #5f6d82;
  --placeholder: #66758b;
  --line: #c7d5e6;
  --line-strong: #91a9c3;
  --focus: #087a70;
  --danger: #a51d24;
  --shadow: 0 24px 60px rgba(17, 46, 87, .12);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at -4% -2%, #dbe9f9 0 230px, transparent 231px),
    radial-gradient(circle at 104% 102%, #dfebfa 0 260px, transparent 261px),
    var(--page);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}
button, input, select, textarea { font: inherit; }
button, summary, label { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[hidden] { display: none !important; }
svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; }

.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;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 24px 12px 0;
}
.intro-panel { min-width: 0; }
.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 71px;
  padding: 8px 12px;
  background: #0d1c35;
  border-bottom: 3px solid #d4530a;
  border-radius: 12px 12px 2px 2px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}
.brand-lockup img {
  width: 36px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-type {
  display: flex;
  min-width: 0;
  overflow: hidden;
  font-family: "Kings Caslon Display", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .5px;
  line-height: 1;
  white-space: nowrap;
}
.brand-type span:first-child { color: #d4530a; }
.brand-type span:last-child { color: #fff; }
.brand-row .secure-pill {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}
.secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}
.secure-pill svg { width: 14px; height: 14px; }
.secure-pill--desktop { display: none; }

.intro-copy { padding: 30px 8px 24px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--orange-text);
  font-family: "DM Mono", monospace;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.intro-copy h1 {
  max-width: 420px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.65rem, 13vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .9;
}
.intro-copy h1 span { display: block; }
.intro-copy p { max-width: 520px; margin: 16px 0 0; color: var(--muted); }
.intro-copy .intro-lead {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}
.intro-feature {
  display: grid;
  grid-template-columns: clamp(128px, 42vw, 190px) minmax(0, 1fr);
  grid-template-areas: "art copy";
  align-items: center;
  gap: clamp(12px, 4vw, 24px);
  max-width: 560px;
  margin: 18px auto 0;
}
.intro-feature-copy {
  grid-area: copy;
  min-width: 0;
}
.intro-feature-copy p { margin: 0; }
.intro-feature-copy p + p { margin-top: 12px; }
.intro-feature-copy .intro-lead {
  font-size: clamp(.94rem, 3.6vw, 1.08rem);
  line-height: 1.28;
}
.intro-feature-copy p:not(.intro-lead) {
  font-size: clamp(.875rem, 3.4vw, 1rem);
  line-height: 1.45;
}

.mobile-trust { display: grid; gap: 10px; margin: 0 8px 20px; }
.mobile-trust details,
.optional-disclosure {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .93);
}
.mobile-trust summary,
.optional-disclosure > summary {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: var(--navy-deep);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary > svg { flex: 0 0 auto; width: 16px; height: 16px; transition: transform .2s ease; }
details[open] > summary > svg { transform: rotate(180deg); }
.mobile-trust .icon-list,
.mobile-trust .next-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 4px 16px 16px;
  list-style: none;
}
.mobile-trust .icon-list li,
.mobile-trust .next-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #34445b;
  font-size: .9rem;
  line-height: 1.35;
}
.mobile-trust .icon-list li > span,
.mobile-trust .next-list li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}
.mobile-trust .icon-list li > span {
  border: 1px solid #f4a88b;
  border-radius: 50%;
  color: var(--orange-text);
}
.mobile-trust .icon-list svg { width: 16px; height: 16px; }
.mobile-trust .next-list li > span {
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}
.building-art {
  grid-area: art;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 17px 15px rgba(17, 46, 87, .13));
}
.desktop-rail { display: none; }

.form-panel { min-width: 0; }
.form-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 22px 16px 26px;
}
.form-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.form-card-head h2,
.confirmation h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.65rem, 5vw, 2rem);
  line-height: 1.05;
}
.progress-wrap { padding: 14px 0 4px; }
.progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.progress-copy span:last-child { text-align: right; }
.progress-track {
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6edf5;
}
.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cta), var(--orange));
  transition: width .2s ease;
}
.draft-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: right;
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.form-section > legend {
  float: left;
  width: 100%;
  margin: 0 0 4px;
  padding: 0 0 12px;
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.form-section > legend::after {
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 9px;
  background: var(--orange);
  content: "";
}
.form-section > legend.sr-only {
  position: absolute;
  float: none;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  padding: 0;
}
.form-section > legend.sr-only::after { display: none; }
.form-section::after { display: table; clear: both; content: ""; }
.details-section { padding-top: 16px; }
.details-section > legend::after { display: none; }
.section-help {
  clear: both;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .88rem;
}
.form-grid {
  clear: both;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.field {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  color: var(--navy-deep);
  font-size: .88rem;
  font-weight: 700;
}
.field > span { min-height: 20px; }
.field span small { color: var(--muted); font-weight: 600; }
.field b,
.consent b { color: var(--orange-text); }
.field > small { color: var(--muted); font-size: .8rem; font-weight: 400; }
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 13px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 132px; resize: vertical; }
select {
  appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}
::placeholder { color: var(--placeholder); opacity: 1; }
input:hover, select:hover, textarea:hover { border-color: var(--line-strong); }
input:focus, select:focus, textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(8, 122, 112, .16);
  outline: 0;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible,
.goal-card:has(input:focus-visible),
.contact-card:has(input:focus-visible),
.consent:has(input:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.goal-grid {
  clear: both;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.goal-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  min-height: 78px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy-deep);
  cursor: pointer;
  padding: 10px;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.1;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.goal-card:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.goal-card > input,
.contact-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.goal-card:has(input:checked) { border-color: var(--focus); background: #f1faf8; }
.goal-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.goal-icon svg { width: 21px; height: 21px; }
.goal-icon--green { background: #e8f7ee; color: #258b53; }
.goal-icon--blue { background: #eaf3fd; color: #286eb7; }
.goal-icon--orange { background: #fff0e9; color: #d74613; }
.goal-icon--navy { background: #e9eef5; color: var(--navy); }
.goal-card > i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: transparent;
}
.goal-card > i svg { width: 13px; height: 13px; }
.goal-card:has(input:checked) > i { border-color: var(--focus); background: var(--focus); color: #fff; }
.field-error {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--danger);
  font-size: .82rem;
  font-weight: 700;
}

.optional-disclosure { margin-top: 16px; overflow: hidden; }
.optional-disclosure > summary { padding: 14px 16px; }
.optional-disclosure > summary span { display: grid; gap: 2px; }
.optional-disclosure > summary small { color: var(--muted); font-size: .78rem; font-weight: 600; }
.optional-disclosure[open] > summary { border-bottom: 1px solid var(--line); background: #f8fbff; }
.disclosure-body { padding: 16px; }
.safety-note {
  margin: 0 0 16px;
  border-left: 4px solid var(--focus);
  background: #eef9f7;
  color: #34445b;
  padding: 11px 12px;
  font-size: .82rem;
}
.conditional {
  min-width: 0;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
  padding: 14px;
}
.conditional legend { padding: 0 7px; color: var(--navy); font-size: .85rem; font-weight: 800; }
.conditional > .field { max-width: 50%; }

.story-section { border-bottom: 0; }
.field--textarea { clear: both; }
.character-count { margin-top: 3px; color: var(--muted); font-size: .75rem; text-align: right; }
.upload {
  display: grid;
  gap: 8px;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  background: #f8fbff;
  padding: 14px;
}
.upload label { display: grid; gap: 2px; }
.upload label span,
.upload small { color: var(--muted); font-size: .8rem; }
.upload input { min-height: 48px; padding: 9px; }
.evidence-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 16px 0 0;
  border: 0;
  padding: 0;
}
.evidence-checks legend { margin-bottom: 5px; color: var(--navy); font-size: .84rem; font-weight: 800; }
.evidence-checks label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  font-weight: 600;
}
.evidence-checks input,
.consent input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  accent-color: var(--focus);
}

.follow-section { border-bottom: 0; }
.contact-grid {
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.contact-card {
  position: relative;
  display: grid;
  min-height: 82px;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: .86rem;
  font-weight: 800;
}
.contact-card > svg { width: 19px; height: 19px; }
.contact-card > i { width: 18px; height: 18px; border: 1px solid var(--line-strong); border-radius: 50%; }
.contact-card:has(input:checked) { border-color: var(--focus); background: #f1faf8; }
.contact-card:has(input:checked) > i { border: 5px solid #fff; background: var(--focus); box-shadow: 0 0 0 1px var(--focus); }
.consent {
  display: flex;
  min-height: 64px;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7faff;
  color: #34445b;
  padding: 14px;
  font-size: .88rem;
  cursor: pointer;
}

.submit-wrap { display: grid; gap: 9px; margin-top: 16px; text-align: center; }
.submit-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--cta);
  border-radius: 9px;
  background: var(--cta);
  color: #fff;
  box-shadow: 0 11px 24px rgba(184, 63, 0, .22);
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 800;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.submit-button:hover { border-color: var(--cta-hover); background: var(--cta-hover); transform: translateY(-1px); }
.submit-button:disabled { cursor: wait; opacity: .7; transform: none; }
.submit-button svg { width: 18px; height: 18px; stroke-width: 3; }
.submit-wrap p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}
.submit-wrap p svg { width: 13px; height: 13px; }
.form-disclaimer {
  max-width: 620px;
  margin: 9px auto 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.35;
  text-align: center;
}
.form-status {
  min-height: 22px;
  margin-top: 10px;
  color: var(--danger);
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
}
.form-status.success { color: #12663c; }

.confirmation { padding: 56px 14px; text-align: center; }
.confirmation-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8f7ee;
  color: #12663c;
}
.confirmation-icon svg { width: 30px; height: 30px; stroke-width: 3; }
.confirmation p:not(.eyebrow) { max-width: 520px; margin: 14px auto 20px; color: var(--muted); }
.text-button {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-footer {
  display: flex;
  width: min(calc(100% - 32px), 520px);
  align-items: center;
  gap: 16px;
  margin: 36px auto 90px;
  color: var(--navy-deep);
}
.page-footer p { display: grid; gap: 5px; margin: 0; }
.page-footer strong { font-size: 1rem; line-height: 1.12; }
.page-footer p span { color: var(--muted); font-size: .76rem; }
.footer-mark {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 52px;
  object-fit: contain;
}

@media (min-width: 560px) {
  .page-shell { padding-inline: 20px; }
  .form-card { padding: 26px 28px 32px; }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .evidence-checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 760px) {
  .page-shell { padding-top: 30px; }
  .form-card { padding: 30px 34px 36px; }
  .secure-pill--desktop { display: inline-flex; border-radius: 0; margin: -30px -34px 0 0; padding-inline: 18px; }
  .goal-grid { gap: 10px; }
  .goal-card { min-height: 72px; font-size: .84rem; }
}

@media (min-width: 1040px) {
  body { background-attachment: fixed; }
  .page-shell {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 28px 20px 0;
  }
  .intro-panel { position: relative; padding: 6px 0 0; }
  .secure-pill--mobile,
  .mobile-trust { display: none; }
  .intro-copy { padding: 36px 0 18px; }
  .intro-copy h1 { font-size: 4rem; }
  .intro-copy .intro-lead { max-width: 310px; font-size: 1.15rem; }
  .intro-copy p { max-width: 310px; }
  .intro-feature {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    margin: 0;
  }
  .intro-feature-copy .intro-lead { margin-top: 16px; }
  .intro-feature-copy p + p { margin-top: 16px; }
  .building-art {
    display: block;
    width: 200px;
    height: 250px;
    object-fit: contain;
    margin: 12px auto 24px;
    filter: drop-shadow(0 17px 15px rgba(17, 46, 87, .13));
  }
  .desktop-rail { display: grid; gap: 20px; }
  .rail-section { border-top: 1px solid var(--line); padding-top: 15px; }
  .rail-section h2 { margin: 0 0 12px; color: var(--navy-deep); font-size: .9rem; text-transform: uppercase; }
  .icon-list,
  .next-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
  .icon-list li,
  .next-list li { display: flex; align-items: center; gap: 10px; color: #34445b; font-size: .78rem; }
  .icon-list li > span {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid #f4a88b;
    border-radius: 50%;
    color: var(--orange-text);
  }
  .icon-list svg { width: 17px; height: 17px; }
  .next-card { border: 0; border-radius: 13px; background: var(--soft-blue); padding: 16px; }
  .next-list li > span {
    display: grid;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
  }
  .form-card { border-radius: 18px; }
  .page-footer { margin-top: 42px; }
}

@media (max-width: 520px) {
  .brand-type { font-size: clamp(15px, 3.6vw, 18px); }
  .brand-row { gap: 8px; padding-inline: 9px; }
  .brand-lockup { gap: 7px; }
  .brand-lockup img { width: 32px; height: 35px; }
  .secure-pill { padding-inline: 9px; font-size: .7rem; }
}

@media (max-width: 359px) {
  .secure-pill-prefix { display: none; }
  .page-shell { padding-inline: 8px; }
  .form-card { padding-inline: 13px; }
  .goal-card { grid-template-columns: 30px minmax(0, 1fr) 18px; gap: 5px; padding: 8px 6px; font-size: .72rem; }
  .goal-icon { width: 30px; height: 30px; }
  .contact-card { font-size: .78rem; }
}

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