:root {
  --black: #050506;
  --ink: #111216;
  --muted: #686b73;
  --silver: #a7a9b0;
  --line: #dcdde1;
  --surface: #f7f7f8;
  --white: #ffffff;
  --radius: 28px;
  --ease: cubic-bezier(.2,.75,.25,1);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  height: 76px;
  width: 100%;
  padding: 0 clamp(20px,5vw,76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 50;
  background: linear-gradient(120deg,rgba(255,255,255,.98),rgba(239,240,242,.96) 50%,rgba(255,255,255,.98));
  border-bottom: 1px solid rgba(198,199,204,.65);
  box-shadow: 0 12px 36px rgba(8,8,10,.06);
}
.brand { display: inline-flex; align-items: center; gap: 9px; width: max-content; font-size: 23px; font-weight: 680; letter-spacing: -.045em; }
.brand > span > span { font-weight: 800; }
.brand-mark { width: 36px; height: 36px; flex: none; stroke: none; }
.site-header nav { display: flex; align-items: center; gap: clamp(24px,3vw,46px); font-size: 13px; color: #494b51; }
.site-header nav a { position: relative; transition: color .25s; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: #111; transition: right .3s var(--ease); }
.site-header nav a:hover { color: #000; }
.site-header nav a:hover::after { right: 0; }
.header-cta { justify-self: end; padding: 12px 17px; border: 1px solid #cfd0d4; border-radius: 13px; background: rgba(255,255,255,.7); box-shadow: inset 0 1px rgba(255,255,255,.8),0 6px 18px rgba(0,0,0,.05); font-size: 12px; font-weight: 750; transition: .25s var(--ease); }
.header-cta:hover { transform: translateY(-2px); background: #050506; color: white; border-color: #050506; }

.hero {
  height: 780px;
  position: relative;
  overflow: hidden;
  background: #050506;
  color: white;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.12) 36%,
      rgba(0,0,0,.36) 64%,
      rgba(0,0,0,.82) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.38) 12%,
      rgba(0,0,0,.08) 28%,
      rgba(0,0,0,.02) 50%,
      rgba(0,0,0,.08) 72%,
      rgba(0,0,0,.38) 88%,
      rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.06), rgba(255,255,255,0) 48%);
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 175px;
  width: min(1120px, calc(100% - 80px));
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0 3px 20px rgba(0,0,0,.7);
}
.eyebrow,.section-kicker { margin: 0; text-transform: uppercase; letter-spacing: .28em; font-size: 10px; font-weight: 780; }
.eyebrow { color: #d8dae0; }
.hero h1 { margin: 14px 0 18px; font-size: clamp(54px,4vw,82px); letter-spacing: -.058em; line-height: .98; font-weight: 680; }
.hero h1 span { color: #aeb0b6; }
.hero-lead { width: 680px; max-width: 100%; color: #e2e3e7; line-height: 1.65; font-size: 16px; margin: 0 auto; }
.hero-signature { margin-top: 18px; display: flex; align-items: baseline; justify-content: center; gap: 11px; }
.hero-signature strong { font-size: 13px; }
.hero-signature span { color: #9da0a8; font-size: 11px; }
.trust-row {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(920px,calc(100% - 80px));
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.trust-row article { display: flex; align-items: center; gap: 12px; padding: 13px 15px; background: rgba(8,8,10,.52); border: 1px solid rgba(210,212,219,.3); border-radius: 16px; backdrop-filter: blur(12px); box-shadow: inset 0 1px rgba(255,255,255,.07),0 10px 22px rgba(0,0,0,.16); }
.trust-icon { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border: 1px solid #61646c; border-radius: 11px; color: white; }
.trust-icon svg { width: 19px; height: 19px; }
.trust-row b,.trust-row small { display: block; }
.trust-row b { font-size: 13px; margin-bottom: 3px; }
.trust-row small { color: #aeb0b6; font-size: 11px; }
.reveal-on-load { animation: copyEnter .85s .18s var(--ease) both; }

.submission-shell {
  position: relative;
  z-index: 10;
  margin-top: -1px;
  padding: 82px clamp(20px,6vw,92px) 118px;
  background:
    radial-gradient(circle at 50% 0%,rgba(160,163,170,.18),transparent 27%),
    linear-gradient(180deg,#f2f3f4 0%,#fff 29%,#f8f8f9 100%);
}
.submission-shell::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 150px; background: linear-gradient(180deg,rgba(6,6,7,.92),rgba(31,32,36,.24) 24%,rgba(238,239,241,0) 100%); pointer-events: none; }
.form-intro { width: min(1320px, calc(100% - 80px)); max-width: none; margin: 0 auto 31px; position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr); grid-template-areas: "kicker description" "heading description"; align-items: end; gap: 10px 72px; color: var(--ink); }
.form-intro .section-kicker { grid-area: kicker; align-self: end; }
.form-intro h2 { grid-area: heading; }
.form-intro > p { grid-area: description; align-self: end; max-width: 500px; justify-self: end; }
.section-kicker { color: #7d828a; }
.form-intro h2 { margin: 12px 0 0; font-size: clamp(40px,3.4vw,58px); line-height: 1.02; letter-spacing: -.06em; }
.form-intro h2 span { color: #8e939b; }
.form-intro > p { color: #5f646d; font-size: 16px; line-height: 1.65; margin: 0 0 4px; }
.form-card { width: min(1320px, calc(100% - 80px)); max-width: none; min-height: 585px; margin: 0 auto; position: relative; z-index: 3; background: rgba(255,255,255,.94); border: 1px solid rgba(213,214,219,.95); border-radius: 29px; box-shadow: 0 34px 90px rgba(9,9,11,.16), inset 0 1px #fff; overflow: hidden; }
.stepper { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; padding: 21px 34px; background: linear-gradient(110deg,#fafafa,#eceef1 50%,#fafafa); border-bottom: 1px solid #dfe0e3; }
.step-item { display: flex; align-items: center; gap: 9px; color: #95979d; font-size: 12px; white-space: nowrap; transition: .3s var(--ease); }
.step-item b { width: 29px; height: 29px; border: 1px solid #c6c8ce; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: #fafafa; }
.step-item.active { color: #111; font-weight: 760; }
.step-item.active b { background: #111216; color: white; border-color: #111216; box-shadow: 0 6px 14px rgba(0,0,0,.16); }
.step-item.completed b { background: #686b72; color: white; border-color: #686b72; }
.step-line { height: 1px; background: #c9cbd0; margin: 0 18px; position: relative; overflow: hidden; }
.step-line i { position: absolute; inset: 0 100% 0 0; background: #111; transition: right .5s var(--ease); }
.step-line.filled i { right: 0; }
#deal-form { padding: 32px 40px 28px; }
.form-step { display: none; opacity: 0; transform: translateX(22px); }
.form-step.active { display: block; animation: stepIn .42s var(--ease) forwards; }
.step-heading { display: grid; grid-template-columns: 210px 1fr; gap: 22px; align-items: start; margin-bottom: 29px; }
.step-heading > div { display: flex; align-items: center; gap: 10px; color: #74777e; }
.step-heading > div span { width: 29px; height: 29px; border: 1px solid #cfd1d6; border-radius: 50%; display: grid; place-items: center; font-size: 9px; }
.step-heading p { margin: 0; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .11em; }
.step-heading h3 { font-size: 26px; line-height: 1.16; letter-spacing: -.035em; margin: 0; max-width: 600px; font-weight: 650; }
.field-grid { display: grid; gap: 14px; margin-bottom: 15px; }
.field-grid.two { grid-template-columns: repeat(2,1fr); }
.field-grid.three { grid-template-columns: repeat(3,1fr); }
.field-grid.four { grid-template-columns: repeat(4,1fr); }
.field { display: block; position: relative; }
.field > span { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 13px; font-weight: 750; color: #4a4c52; }
.field > span em { font-size: 11px; font-style: normal; font-weight: 500; color: #93959b; }
.field input,.field select,.field textarea { width: 100%; color: #131418; background: #fbfbfc; border: 1px solid #d9dade; border-radius: 11px; outline: none; transition: .22s; }
.field input,.field select { height: 48px; padding: 0 14px; font-size: 15px; }
.field textarea { padding: 14px; resize: vertical; font-size: 15px; }
.field input::placeholder,.field textarea::placeholder { color: #9b9da3; }
.field input:focus,.field select:focus,.field textarea:focus { border-color: #767980; background: white; box-shadow: 0 0 0 4px rgba(100,102,109,.09); }
.field.invalid input,.field.invalid select,.field.invalid textarea { border-color: #a72e2e; box-shadow: 0 0 0 3px rgba(167,46,46,.08); }
.field.full { margin-bottom: 15px; }
.money i { position: absolute; left: 13px; bottom: 14px; color: #878990; font-style: normal; font-size: 12px; }
.money input { padding-left: 28px; }
.binary-row { min-height: 55px; display: flex; align-items: center; gap: 10px; border: 1px solid #dedfe3; background: linear-gradient(120deg,#fbfbfc,#f3f4f5); border-radius: 13px; padding: 9px 10px 9px 15px; margin-top: 18px; }
.binary-row > span { font-size: 13px; font-weight: 720; margin-right: auto; }
.binary-row label { cursor: pointer; }
.binary-row input { position: absolute; opacity: 0; }
.binary-row label span { display: block; padding: 10px 13px; border: 1px solid #d7d8dc; border-radius: 9px; background: #fff; font-size: 12px; transition: .2s; }
.binary-row input:checked + span { background: #111216; color: #fff; border-color: #111216; }
.conditional-details { margin: 19px 0 4px; padding: 17px 18px 3px; background: #f4f5f6; border: 1px solid #e0e1e4; border-radius: 14px; animation: detailIn .35s var(--ease); }
.conditional-label { margin: 0 0 13px; color: #4c4f55; font-size: 13px; font-weight: 760; }
.conditional-label span { color: #8b8e95; font-size: 11px; font-weight: 550; margin-left: 5px; }
.deal-summary { display: grid; grid-template-columns: 170px 1fr; gap: 25px; align-items: center; padding: 18px 19px; margin-top: 21px; border-radius: 14px; color: white; background: linear-gradient(120deg,#0a0a0c,#1d1f24 58%,#080809); overflow: hidden; position: relative; }
.deal-summary::after { content: ""; position: absolute; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; right: -75px; top: -130px; box-shadow: 0 0 40px rgba(255,255,255,.08); }
.deal-summary div { position: relative; z-index: 1; }
.deal-summary span { display: block; color: #9fa2a9; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.deal-summary strong { display: block; font-size: 27px; margin-top: 4px; letter-spacing: -.04em; }
.deal-summary p { position: relative; z-index: 1; margin: 0; font-size: 12px; line-height: 1.55; color: #b7bac0; max-width: 430px; }
.upload-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.upload-zone { height: 162px; border: 1px dashed #aaadb4; border-radius: 16px; display: grid; align-content: center; justify-items: center; background: linear-gradient(145deg,#fcfcfd,#f0f1f3); cursor: pointer; transition: .25s var(--ease); position: relative; overflow: hidden; }
.upload-zone::before { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: rgba(210,212,217,.25); filter: blur(15px); right: -50px; top: -70px; }
.upload-zone:hover,.upload-zone.dragging { transform: translateY(-3px); border-color: #4f5258; background: white; box-shadow: 0 16px 28px rgba(0,0,0,.07); }
.upload-zone input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.upload-symbol { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; color: white; background: #111216; margin-bottom: 10px; box-shadow: 0 9px 20px rgba(0,0,0,.18); }
.upload-symbol svg { width: 19px; height: 19px; }
.upload-zone strong { font-size: 13px; }
.upload-zone small { color: #777a81; font-size: 11px; margin-top: 4px; }
.upload-zone em { font-style: normal; color: #9a9ca2; font-size: 10px; margin-top: 8px; max-width: 80%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.upload-zone.has-file { border-style: solid; border-color: #575a60; background: #fff; }
.upload-zone.has-file .upload-symbol { background: #5c6067; }
.upload-limit { color: #8f9299; font-size: 11px; margin: 8px 2px 18px; }
.jv-box { padding: 19px 20px; background: #f4f5f6; border: 1px solid #dfe0e4; border-radius: 15px; }
.jv-heading { display: flex; justify-content: space-between; align-items: center; }
.jv-heading span { font-size: 14px; font-weight: 780; }
.jv-heading b { font-size: 11px; padding: 6px 9px; border-radius: 30px; color: white; background: #111216; }
.jv-box > p { margin: 10px 0 15px; color: #696c73; font-size: 12px; line-height: 1.55; max-width: 870px; }
.consent { display: block; cursor: pointer; margin-top: 8px; }
.consent input { position: absolute; opacity: 0; }
.consent > span { display: grid; grid-template-columns: 22px 1fr; gap: 9px; align-items: start; font-size: 12px; color: #4e5157; line-height: 1.5; }
.consent i { width: 21px; height: 21px; border: 1px solid #bfc1c6; border-radius: 6px; display: grid; place-items: center; color: transparent; font-style: normal; background: white; }
.consent input:checked + span i { color: white; background: #111216; border-color: #111216; }
.form-actions { display: grid; grid-template-columns: 130px 1fr 160px; align-items: center; gap: 18px; border-top: 1px solid #e3e4e7; padding-top: 20px; margin-top: 27px; }
.back-button { justify-self: start; border: 0; background: transparent; color: #666970; font-size: 13px; font-weight: 720; }
.next-button,.submit-button { height: 47px; padding: 0 19px; border: 0; border-radius: 11px; background: linear-gradient(120deg,#101114,#292b30 52%,#070708); color: white; font-size: 13px; font-weight: 760; box-shadow: 0 10px 24px rgba(0,0,0,.19); transition: .25s var(--ease); }
.next-button:hover,.submit-button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.24); }
.submit-button { display: flex; align-items: center; justify-content: space-between; min-width: 160px; }
.submit-button.loading .button-arrow { animation: spin 1s linear infinite; }
.secure-note { justify-self: center; display: flex; align-items: center; gap: 6px; color: #8b8e95; font-size: 11px; text-align: center; margin: 0; }
.secure-note svg { width: 13px; height: 13px; }
.honeypot { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }
.form-message { margin: 18px 0 0; padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.error-message { color: #872525; background: #fff1f1; border: 1px solid #f0caca; }
.success-state { min-height: 520px; padding: 70px 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.success-check { width: 66px; height: 66px; display: grid; place-items: center; color: white; background: #111216; border-radius: 21px; box-shadow: 0 20px 36px rgba(0,0,0,.16); }
.success-check svg { width: 35px; height: 35px; stroke-dasharray: 40; animation: drawCheck .65s .15s ease both; }
.success-state h3 { margin: 18px 0 11px; font-size: 34px; letter-spacing: -.05em; }
.success-state > p:not(.section-kicker) { max-width: 540px; color: #6c6f76; font-size: 13px; line-height: 1.65; }
.success-state button { margin-top: 17px; border: 0; background: transparent; text-decoration: underline; text-underline-offset: 5px; font-size: 13px; color: #55585f; }

.process-section { padding: 110px clamp(20px,5vw,76px) 120px; background: #fff; }
.process-heading { text-align: center; margin-bottom: 42px; }
.process-heading h2 { margin: 12px 0 0; font-size: clamp(39px,4.6vw,64px); letter-spacing: -.06em; }
.process-heading h2 span { color: #a0a2a8; }
.process-grid { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.process-grid article { min-height: 235px; padding: 22px; border: 1px solid #dedfe3; border-radius: 20px; background: linear-gradient(145deg,#fff,#f5f5f6); position: relative; transition: .35s var(--ease); overflow: hidden; }
.process-grid article::after { content: ""; position: absolute; width: 145px; height: 145px; right: -70px; top: -70px; border: 1px solid #dcdee2; border-radius: 50%; transition: .45s var(--ease); }
.process-grid article:hover { transform: translateY(-6px); box-shadow: 0 22px 42px rgba(0,0,0,.08); }
.process-grid article:hover::after { transform: scale(1.2); }
.process-grid article b { color: #a0a2a8; font-size: 10px; }
.process-icon { width: 40px; height: 40px; display: grid; place-items: center; margin: 27px 0 25px; color: white; background: #111216; border-radius: 12px; font-size: 18px; box-shadow: 0 10px 20px rgba(0,0,0,.18); }
.process-grid h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.035em; }
.process-grid p { margin: 0; color: #777a81; font-size: 13px; line-height: 1.6; }
.about-strip { margin: 0 clamp(20px,5vw,76px) 90px; padding: 64px clamp(28px,5vw,72px); color: white; background: linear-gradient(115deg,#080809,#202228 55%,#080809); border-radius: 28px; display: grid; grid-template-columns: 1.1fr .9fr auto; align-items: center; gap: 55px; position: relative; overflow: hidden; }
.about-strip::after { content: ""; position: absolute; width: 700px; height: 280px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; right: -170px; bottom: -210px; box-shadow: 0 -15px 55px rgba(255,255,255,.08); }
.about-strip > * { position: relative; z-index: 1; }
.about-strip h2 { margin: 12px 0 0; font-size: clamp(34px,3.5vw,52px); line-height: 1.04; letter-spacing: -.055em; }
.about-strip h2 span { color: #a7a9b0; }
.about-strip > p { margin: 0; color: #b8bac0; font-size: 14px; line-height: 1.7; }
.about-strip > a { white-space: nowrap; padding: 13px 16px; border: 1px solid #70737a; border-radius: 12px; font-size: 10px; transition: .25s; }
.about-strip > a:hover { background: white; color: #111; }
footer { min-height: 135px; padding: 35px clamp(20px,5vw,76px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; border-top: 1px solid #e1e2e5; background: #f7f7f8; }
.footer-brand { color: #6d7077; }
.footer-brand > span { color: #111; }
footer p { margin: 0; color: #7a7d84; font-size: 10px; }
footer > a:not(.brand) { font-size: 10px; font-weight: 740; }
footer small { grid-column: 1 / -1; padding-top: 17px; border-top: 1px solid #e1e2e5; color: #989aa0; font-size: 8px; }
.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease),transform .75s var(--ease); }
.scroll-reveal.visible { opacity: 1; transform: none; }

@keyframes copyEnter { from { opacity: 0; transform: translateX(-50%) translateY(25px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes stepIn { to { opacity: 1; transform: none; } }
@keyframes detailIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drawCheck { from { stroke-dashoffset: 40; } to { stroke-dashoffset: 0; } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { height: 750px; }
  .hero-media img { object-fit: cover; object-position: center 38%; }
  .hero-copy { top: 210px; width: min(860px, calc(100% - 48px)); }
  .form-intro { width: min(calc(100% - 40px), 760px); grid-template-columns: 1fr; grid-template-areas: "kicker" "heading" "description"; gap: 12px; }
  .form-intro > p { justify-self: start; max-width: 620px; }
  .form-card { width: calc(100% - 40px); }
  .field-grid.three { grid-template-columns: 1fr 1fr; }
  .field-grid.three .field:last-child { grid-column: 1/-1; }
  .field-grid.four { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 26px; }
  .about-strip > a { width: max-content; }
}
@media (max-width: 680px) {
  .site-header { height: 64px; padding: 0 15px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 31px; height: 31px; }
  .header-cta { font-size: 0; width: 43px; height: 43px; padding: 0; display: grid; place-items: center; }
  .header-cta span { font-size: 15px; }
  .hero { height: 705px; }
  .hero-media img { object-position: center top; }
  .hero-copy { top: 190px; width: calc(100% - 32px); text-align: center; }
  .hero h1 { font-size: clamp(42px, 12vw, 50px); }
  .hero-lead { font-size: 13px; margin: auto; width: 430px; max-width: 100%; }
  .hero-signature { justify-content: center; flex-wrap: wrap; }
  .trust-row { bottom: 25px; grid-template-columns: 1fr; gap: 7px; }
  .trust-row article { padding: 9px 12px; background: rgba(8,8,10,.72); }
  .trust-row article:nth-child(2),.trust-row article:nth-child(3) { display: none; }
  .submission-shell { padding: 70px 13px 88px; }
  .submission-shell::before { height: 125px; }
  .form-intro { width: 100%; padding: 0 10px; color: var(--ink); }
  .form-intro h2 { font-size: 40px; }
  .form-card { width: 100%; border-radius: 23px; }
  .stepper { padding: 16px 13px; }
  .step-item span { display: none; }
  .step-line { margin: 0 10px; }
  #deal-form { padding: 25px 17px 20px; }
  .step-heading { grid-template-columns: 1fr; gap: 12px; }
  .step-heading h3 { font-size: 21px; }
  .field-grid.two,.field-grid.three,.field-grid.four { grid-template-columns: 1fr; }
  .field-grid.three .field:last-child { grid-column: auto; }
  .binary-row { align-items: stretch; flex-wrap: wrap; }
  .binary-row > span { width: 100%; }
  .upload-grid { grid-template-columns: 1fr; }
  .upload-zone { height: 145px; }
  .deal-summary { grid-template-columns: 1fr; gap: 8px; }
  .form-actions { grid-template-columns: auto 1fr; }
  .secure-note { display: none; }
  .next-button,.submit-button { justify-self: end; min-width: 138px; }
  .process-section { padding: 85px 13px 95px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 200px; }
  .about-strip { margin: 0 13px 70px; padding: 42px 27px; border-radius: 23px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer small { grid-column: 1; }
}

@media (min-width: 1600px) {
  .site-header { padding-left: max(76px, calc((100vw - 1500px) / 2)); padding-right: max(76px, calc((100vw - 1500px) / 2)); }
  .hero-copy { top: 165px; }
  .submission-shell { padding-left: 70px; padding-right: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .scroll-reveal { opacity: 1; transform: none; }
}
