:root {
  --blue: #082d56;
  --blue-2: #164c83;
  --ink: #152033;
  --muted: #637083;
  --paper: #f3efe6;
  --white: #fffdf8;
  --line: #d7d1c5;
  --accent: #e9a72f;
  --green: #1e7b56;
  --red: #a33b35;
  --shadow: 0 24px 80px rgba(7, 31, 56, 0.13);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
.is-hidden {
  display: none !important;
}
.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 76px);
  position: relative;
  z-index: 10;
  background: rgba(243, 239, 230, 0.94);
  border-bottom: 1px solid rgba(8, 45, 86, 0.12);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
}
.brand-mark {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}
.brand strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1;
}
.brand small {
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.language-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-weight: 800;
}
.intro {
  min-height: calc(100svh - 78px);
  padding: clamp(54px, 8vw, 116px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 8vw;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(110deg, var(--blue) 0 58%, #123f70 58% 100%);
  color: white;
  position: relative;
}
.intro-copy {
  max-width: 820px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 12px;
  font-weight: 850;
  margin: 0 0 20px;
  color: var(--accent);
}
.intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.6vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  max-width: 900px;
  font-weight: 500;
}
.lede {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  max-width: 670px;
  color: #dbe6f1;
  margin: 0;
}
.intro-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--accent);
  color: #172033;
}
.button.ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}
.button.accent {
  background: var(--blue);
  color: white;
}
.trust-line {
  font-size: 13px;
  color: #b9cce0;
  margin-top: 24px;
}
.intro-art {
  height: min(64vw, 640px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}
.orbit-a {
  inset: 4%;
  animation: turn 20s linear infinite;
}
.orbit-b {
  inset: 19%;
  transform: rotate(54deg);
  border-width: 2px;
}
.orbit-c {
  width: 85%;
  height: 32%;
  transform: rotate(-18deg);
}
.art-word {
  font-family: Georgia, serif;
  font-size: clamp(96px, 16vw, 220px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.62);
  letter-spacing: -0.08em;
}
@keyframes turn {
  to {
    transform: rotate(360deg);
  }
}
.wizard-shell {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow);
}
.progress-panel {
  background: var(--blue);
  color: white;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  min-height: calc(100svh - 78px);
}
.submission-code {
  font-size: 13px;
  color: #bbcee1;
  margin: 0;
}
.progress-panel ol {
  list-style: none;
  padding: 0;
  margin: 62px 0 30px;
}
.progress-panel li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  color: #8faac4;
  transition: color 0.2s;
}
.progress-panel li span {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.progress-panel li b {
  font-size: 14px;
}
.progress-panel li.active {
  color: white;
}
.progress-panel li.active span {
  color: var(--accent);
}
.progress-panel li.done {
  color: #c9d7e6;
}
.save-state {
  margin-top: auto;
  font-size: 12px;
  color: #a7bfd6;
}
.save-state::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #7fd4ad;
  border-radius: 50%;
  margin-right: 8px;
}
.form-workspace {
  padding: clamp(34px, 7vw, 92px);
  max-width: 1000px;
  width: 100%;
  justify-self: center;
}
.form-step {
  animation: step-in 0.35s ease both;
}
@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.form-step:not(.active) {
  display: none;
}
.step-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--blue-2);
  font-weight: 900;
}
.form-step h2,
.receipt h2,
.services h2 {
  font-family: Georgia, serif;
  font-size: clamp(35px, 5vw, 59px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--blue);
  margin: 10px 0 16px;
  font-weight: 500;
}
.step-intro {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 40px;
}
.form-step h3 {
  font-size: 15px;
  color: var(--blue);
  margin: 36px 0 15px;
}
.choice-grid {
  border: 0;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.choice-grid legend {
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 14px;
  color: var(--blue);
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
}
.choice span {
  display: flex;
  min-height: 108px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  flex-direction: column;
  justify-content: center;
  transition: 0.18s;
  background: white;
}
.choice b {
  color: var(--blue);
  font-size: 17px;
}
.choice small {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.35;
}
.choice input:checked + span {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
  background: #edf4fa;
  transform: translateY(-2px);
}
.choice input:focus-visible + span {
  outline: 3px solid rgba(233, 167, 47, 0.45);
  outline-offset: 2px;
}
.choice-grid.compact .choice span {
  min-height: 86px;
}
.field-grid {
  display: grid;
  gap: 18px;
  margin: 18px 0 28px;
}
.field-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.field-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.field-grid.address {
  grid-template-columns: 2fr 1fr 0.55fr 0.75fr;
}
.field-grid .street {
  grid-column: auto;
}
.full {
  display: block;
  margin: 16px 0 24px;
}
label > span,
.name-input > span,
.owner-count > span {
  display: block;
  font-size: 12px;
  font-weight: 850;
  color: var(--blue);
  margin-bottom: 8px;
}
input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 16px;
  outline: 0;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
textarea {
  resize: vertical;
  line-height: 1.45;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(22, 76, 131, 0.12);
}
.check-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0;
}
.check-line input {
  width: 21px;
  height: 21px;
  min-height: 0;
  margin-top: 1px;
  accent-color: var(--blue);
}
.check-line span {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.name-lab {
  background: #e9f1f7;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}
.name-input input {
  font-size: 21px;
  min-height: 58px;
}
.name-result {
  grid-column: 1/-1;
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
}
.name-result strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 5px;
}
.name-result p {
  margin: 5px 0;
  color: var(--muted);
  line-height: 1.45;
}
.name-result ul {
  margin: 9px 0 0;
  padding-left: 20px;
}
.optional-names {
  margin-top: 22px;
}
.text-button {
  background: transparent;
  border: 0;
  color: var(--blue-2);
  font-weight: 850;
  padding: 8px 0;
}
.fine-print {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 22px;
}
.owner-count {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-bottom: 20px;
}
.owner-count span {
  margin: 0;
  font-size: 15px;
}
.owner-card {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.owner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.owner-header h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  margin: 0;
  color: var(--blue);
  font-weight: 500;
}
.owner-tag {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.owner-card .field-grid {
  margin-bottom: 14px;
}
.upload-zone {
  border: 1px dashed #9caaba;
  background: #f7f9fb;
  border-radius: 14px;
  padding: 15px;
}
.upload-zone input {
  border: 0;
  background: transparent;
  padding: 7px;
  min-height: auto;
}
.upload-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.upload-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-top: 1px solid #dce3e9;
}
.remove-upload {
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
}
.responsible-line {
  background: #f7f3e9;
  border-radius: 12px;
  padding: 13px;
}
.ownership-meter {
  margin: 25px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
.ownership-meter > div {
  grid-column: 1/-1;
  background: #dce3e8;
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}
.ownership-meter i {
  display: block;
  background: var(--green);
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.review {
  border-top: 1px solid var(--line);
}
.review-section {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.review-section h3 {
  margin: 0;
  color: var(--blue);
}
.review-section p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}
.review-edit {
  border: 0;
  background: transparent;
  color: var(--blue-2);
  font-weight: 850;
}
.signature-block {
  margin-top: 32px;
  padding: 24px;
  background: #f4f0e6;
  border-radius: 18px;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 35px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}
.form-nav .primary {
  margin-left: auto;
}
.form-error {
  margin-top: 20px;
  padding: 14px;
  border-radius: 10px;
  background: #fae6e4;
  color: var(--red);
  font-weight: 700;
}
.receipt {
  min-height: 70vh;
  padding: clamp(70px, 10vw, 130px) max(7vw, 24px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.receipt p {
  max-width: 680px;
  line-height: 1.55;
  color: var(--muted);
  font-size: 18px;
}
.receipt-code {
  margin: 24px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 19px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.receipt-code span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.receipt-code strong {
  color: var(--blue);
  font-size: 22px;
}
.services {
  padding: clamp(76px, 10vw, 140px) clamp(22px, 7vw, 110px);
  background: var(--blue);
  color: white;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(400px, 1.15fr);
  gap: 9vw;
}
.services-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}
.services h2 {
  color: white;
}
.services-heading > p:last-child {
  color: #c0d1e1;
  font-size: 18px;
  line-height: 1.5;
}
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-list > li > span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.service-list h3 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}
.service-list p {
  margin: 0;
  color: #b9cce0;
  line-height: 1.5;
}
footer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px clamp(22px, 7vw, 110px);
  background: #041d36;
  color: #adc3d8;
  font-size: 13px;
}
footer span {
  margin-right: auto;
}
footer a {
  text-decoration: none;
}
@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }
  .intro-art {
    position: absolute;
    right: -120px;
    bottom: -160px;
    opacity: 0.45;
    width: 520px;
  }
  .wizard-shell {
    grid-template-columns: 1fr;
  }
  .progress-panel {
    position: static;
    min-height: 0;
    padding: 16px 20px;
    display: block;
  }
  .progress-panel > div,
  .progress-panel .save-state {
    display: none;
  }
  .progress-panel ol {
    display: flex;
    margin: 0;
    gap: 5px;
  }
  .progress-panel li {
    flex: 1;
    display: block;
    padding: 0;
    height: 4px;
    border-radius: 9px;
    background: #34597e;
    overflow: hidden;
  }
  .progress-panel li span,
  .progress-panel li b {
    display: none;
  }
  .progress-panel li.active,
  .progress-panel li.done {
    background: var(--accent);
  }
  .form-workspace {
    padding: 42px max(20px, 5vw);
  }
  .services {
    grid-template-columns: 1fr;
  }
  .services-heading {
    position: static;
  }
  .field-grid.three {
    grid-template-columns: 1fr 1fr;
  }
  .field-grid.address {
    grid-template-columns: 2fr 1fr;
  }
  .field-grid.address .street {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }
  .brand strong {
    font-size: 18px;
  }
  .brand small {
    display: none;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .intro {
    min-height: calc(100svh - 68px);
    padding: 52px 20px;
    background: var(--blue);
  }
  .intro h1 {
    font-size: 45px;
  }
  .intro-actions {
    display: grid;
  }
  .intro-actions .button {
    width: 100%;
  }
  .trust-line {
    font-size: 12px;
  }
  .form-workspace {
    padding: 35px 18px;
  }
  .form-step h2 {
    font-size: 38px;
  }
  .step-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .choice-grid,
  .choice-grid.compact {
    grid-template-columns: 1fr;
  }
  .choice span,
  .choice-grid.compact .choice span {
    min-height: 77px;
  }
  .field-grid.two,
  .field-grid.three,
  .field-grid.address {
    grid-template-columns: 1fr;
  }
  .field-grid.address .street {
    grid-column: auto;
  }
  .name-lab {
    grid-template-columns: 1fr;
  }
  .name-lab .button {
    width: 100%;
  }
  .review-section {
    grid-template-columns: 1fr auto;
  }
  .review-section p {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .form-nav {
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding: 14px 0 8px;
    margin-top: 24px;
    z-index: 4;
  }
  .form-nav .button {
    min-height: 50px;
    padding: 0 18px;
  }
  .services {
    padding: 78px 20px;
  }
  .service-list h3 {
    font-size: 22px;
  }
  .owner-card .field-grid {
    grid-template-columns: 1fr;
  }
  .receipt {
    padding: 70px 20px;
  }
}

/* The client has already retained Mundo Financial. Keep the entry screen focused
   on the only decision required before the intake begins: language. */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--blue);
  padding: clamp(52px, 8vw, 110px) clamp(22px, 7vw, 110px);
}
.intro-copy {
  max-width: 790px;
}
.intro h1 {
  max-width: 790px;
  margin: 0 auto 28px;
  font-size: clamp(42px, 5.6vw, 70px);
}
.intro .lede {
  margin: 0 auto;
  max-width: 600px;
}
.intro-actions {
  justify-content: center;
}
.intro-actions .button {
  min-width: 190px;
}
@media (max-width: 900px) {
  .intro {
    padding-top: 65px;
  }
}
@media (max-width: 640px) {
  .intro {
    padding: 52px 20px;
  }
  .intro h1 {
    font-size: 42px;
  }
  .intro-actions .button {
    width: 100%;
  }
}

.formation-state-choice {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
}
.formation-state-choice legend {
  font-size: 13px;
  font-weight: 850;
  color: var(--blue);
  margin-bottom: 12px;
}
.formation-state-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.formation-state-options label {
  position: relative;
}
.formation-state-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.formation-state-options span {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition:
    border-color 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.formation-state-options strong {
  font-size: 15px;
  color: var(--blue);
}
.formation-state-options small {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  margin-top: 4px;
}
.formation-state-options input:checked + span {
  border-color: var(--blue-2);
  background: #edf4fa;
  box-shadow: inset 0 0 0 1px var(--blue-2);
}
.formation-state-options input:focus-visible + span {
  outline: 3px solid rgba(233, 167, 47, 0.45);
  outline-offset: 2px;
}
.other-state-field {
  display: block;
  max-width: 390px;
  margin: -8px 0 20px;
}
.state-check-notice {
  margin: 0 0 28px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #f4f0e6;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.45;
}
.primary-name-workbench {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 16px;
  background: #e9f1f7;
}
.name-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.name-position {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 900;
}
.name-section-heading h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--blue);
  margin: 2px 0 5px;
}
.name-section-heading p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.primary-name-label {
  display: block;
  font-size: 12px;
  font-weight: 850;
  color: var(--blue);
  margin-bottom: 8px;
}
.primary-name-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.primary-name-row input {
  min-height: 62px;
  font-size: 20px;
  background: white;
}
.primary-name-row .button {
  min-height: 62px;
  padding-inline: 26px;
  border-radius: 14px;
}
.input-help {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.name-results {
  margin-top: 20px;
}
.name-result {
  padding: 20px;
  border: 1px solid #c5d7e6;
  border-radius: 14px;
  background: white;
}
.name-result.clear {
  border-color: #9acdb9;
  background: #f4fbf7;
}
.name-result.review {
  border-color: #e1c17d;
  background: #fffaf0;
}
.name-result.conflict {
  border-color: #e0aaa6;
  background: #fff7f6;
}
.name-result.manual_review {
  border-color: #b4c8db;
  background: #f7fafc;
}
.name-result-status {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.name-result-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
}
.name-result.clear .name-result-icon {
  background: var(--green);
}
.name-result.review .name-result-icon {
  background: #9b6b10;
}
.name-result.conflict .name-result-icon {
  background: var(--red);
}
.name-result-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.checked-name {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 3px;
  overflow-wrap: anywhere;
}
.name-result h3 {
  font-size: 18px;
  margin: 0;
  color: var(--blue);
}
.name-result > p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}
.name-result ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}
.name-coaching {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(8, 45, 86, 0.13);
}
.name-coaching strong {
  font-size: 13px;
  color: var(--blue);
}
.name-coaching ul {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  color: var(--muted);
}
.name-result .fine-print {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}
.backup-names {
  margin-top: 28px;
  padding: 28px 0 4px;
  border-top: 1px solid var(--line);
  animation: step-in 0.3s ease both;
}
.backup-heading {
  margin-bottom: 18px;
}
.backup-heading .name-position {
  width: 42px;
  border-radius: 14px;
  background: #dbe8f2;
  color: var(--blue);
}
.backup-name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.backup-name-grid .name-input input {
  min-height: 56px;
  font-size: 17px;
  background: white;
}
.name-requirement {
  font-weight: 750;
  color: var(--blue);
}
.commercial-address-option {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid #b9cde0;
  border-radius: 16px;
  background: #f0f6fa;
}
.commercial-address-choice {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  cursor: pointer;
}
.commercial-address-choice input {
  width: 22px;
  height: 22px;
  min-height: 0;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--blue);
}
.commercial-address-choice > span {
  margin: 0;
}
.commercial-address-choice strong {
  display: block;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.35;
}
.commercial-address-choice small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.commercial-address-benefits {
  margin: 18px 0 0 35px;
  padding-top: 16px;
  border-top: 1px solid #cbdbe8;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}
.commercial-address-benefits p {
  margin: 0 0 8px;
}
.commercial-address-benefits ul {
  margin: 0;
  padding-left: 19px;
  display: grid;
  gap: 5px;
}
.commercial-address-caveat {
  margin-top: 12px !important;
  color: var(--muted);
}
.commercial-address-selected {
  margin: 16px 0 0 35px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #dff2e8;
  color: #155d40;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.signature-heading {
  margin: 26px 0 12px;
}
.signature-heading h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--blue);
  margin: 0 0 5px;
}
.signature-heading p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}
.signature-wrap {
  padding: 12px 14px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
#signatureCanvas {
  display: block;
  width: 100%;
  height: 180px;
  touch-action: none;
  cursor: crosshair;
}
.signature-line {
  height: 1px;
  background: #9aa6b5;
  margin: 0 0 8px;
}
.signature-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}
.signature-tools .text-button {
  min-height: 44px;
  padding: 0 4px;
}
.signature-wrap[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(163, 59, 53, 0.11);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(163, 59, 53, 0.11);
}
.choice input[aria-invalid="true"] + span,
.formation-state-options input[aria-invalid="true"] + span {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}
@media (max-width: 900px) {
  .primary-name-row {
    grid-template-columns: 1fr;
  }
  .primary-name-row .button {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .formation-state-options,
  .backup-name-grid {
    grid-template-columns: 1fr;
  }
  .primary-name-workbench {
    padding: 20px 16px;
  }
  .name-section-heading h3 {
    font-size: 22px;
  }
  .commercial-address-option {
    padding: 18px 16px;
  }
  .commercial-address-benefits,
  .commercial-address-selected {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .form-nav {
    position: static;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
