/* Customer KYC styles loaded on demand */

.customer-kyc-hero p {
  margin: 0;
  color: #cfe4df;
  font-size: 14px;
}

.customer-kyc-mobile-hero {
  display: grid;
  gap: 10px;
}

.customer-kyc-hero {
  background: linear-gradient(150deg, rgba(9, 56, 51, 0.94), rgba(7, 33, 30, 0.9));
}

.customer-kyc-hero-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.customer-kyc-hero-head > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.customer-kyc-hero-head :is(h3, h4) {
  margin: 4px 0 0;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(28px, 6.6vw, 38px);
  line-height: 0.98;
  color: #edf7f3;
}

.customer-kyc-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.customer-kyc-progress-meta strong {
  color: #e7f5f1;
  font-size: 15px;
}

.customer-kyc-progress-meta span {
  color: #d2e8e2;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.customer-kyc-progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--belora-theme-border-soft);
  background: var(--app-chip-solid-bg);
  overflow: hidden;
}

.customer-kyc-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(103, 245, 255, 0.18), rgba(12, 100, 91, 0.96) 52%, rgba(118, 86, 29, 0.9));
  transition: width 0.2s ease;
}

.customer-kyc-hero-intro {
  margin: 0;
  color: #ecf7f3;
  font-size: 14px;
  line-height: 1.5;
}

.customer-kyc-capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.customer-kyc-capability-card {
  border: 1px solid rgba(111, 188, 178, 0.24);
  border-radius: 13px;
  padding: 10px;
  display: grid;
  gap: 6px;
}

.customer-kyc-capability-card.is-ready {
  background: linear-gradient(152deg, rgba(11, 46, 39, 0.86), rgba(7, 32, 28, 0.9));
  border-color: rgba(111, 188, 178, 0.34);
}

.customer-kyc-capability-card.is-pending {
  background: linear-gradient(152deg, rgba(44, 41, 24, 0.34), rgba(8, 29, 27, 0.9));
  border-color: rgba(210, 177, 93, 0.24);
}

.customer-kyc-capability-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.customer-kyc-capability-head span {
  color: #bfded7;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-kyc-capability-card strong {
  color: #edf7f3;
  font-size: 16px;
}

.customer-kyc-capability-card small {
  color: #c3ddd6;
  font-size: 13px;
  line-height: 1.42;
}

.customer-kyc-capability-pill {
  flex-shrink: 0;
}

.customer-kyc-checklist {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.customer-kyc-check-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}

.customer-kyc-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(122, 197, 186, 0.46);
  background: rgba(8, 35, 33, 0.78);
  color: #c6e1dc;
  font-size: 12px;
  font-weight: 700;
}

.customer-kyc-check-item.done .customer-kyc-check-icon {
  border-color: rgba(113, 208, 152, 0.55);
  background: rgba(33, 110, 76, 0.34);
  color: #cbf3de;
}

.customer-kyc-check-item strong {
  display: block;
  color: #e8f4f1;
  font-size: 14px;
}

.customer-kyc-check-item small {
  display: block;
  margin-top: 2px;
  color: #c5ddd7;
  font-size: 13px;
  line-height: 1.35;
}

.customer-kyc-next-step {
  margin: 2px 0 0;
  color: #d2e8e3;
  font-size: 14px;
  line-height: 1.4;
}

.customer-kyc-stage-card {
  border: 1px solid rgba(111, 188, 178, 0.24);
  border-radius: 13px;
  background: linear-gradient(152deg, rgba(9, 41, 38, 0.82), rgba(6, 29, 27, 0.88));
  padding: 10px;
  display: grid;
  gap: 6px;
}

.customer-kyc-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.customer-kyc-stage-head p {
  color: #bfded7;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-kyc-stage-card strong {
  color: #edf7f3;
  font-size: 16px;
}

.customer-kyc-stage-card small {
  color: #c3ddd6;
  font-size: 13px;
  line-height: 1.42;
}

.customer-kyc-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.customer-kyc-stage-pill {
  flex-shrink: 0;
}

.customer-kyc-next-panel {
  border: 1px solid rgba(210, 177, 93, 0.32);
  border-radius: 13px;
  background: linear-gradient(148deg, rgba(44, 55, 28, 0.32), rgba(8, 37, 34, 0.84));
  padding: 10px 12px;
  display: grid;
  gap: 5px;
}

.customer-kyc-next-panel p {
  margin: 0;
  color: #edf7f3;
  font-size: 14px;
  line-height: 1.45;
}

.customer-verify-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.customer-kyc-feedback {
  display: grid;
  gap: 6px;
  border-color: rgba(210, 177, 93, 0.34);
  background: linear-gradient(145deg, rgba(13, 48, 43, 0.92), rgba(8, 34, 31, 0.88));
}

.customer-kyc-feedback .helper,
.customer-kyc-feedback .field-error {
  margin: 0;
}

.customer-kyc-feedback-line {
  margin: 0;
  font-size: 13px;
  line-height: 1.42;
}

.customer-kyc-feedback-line.is-success {
  color: #b9eecf;
}

.customer-kyc-feedback-line.is-error {
  color: #f7b6b6;
}

.customer-kyc-feedback-line.is-warning {
  color: #f0dda4;
}

.customer-kyc-card {
  display: grid;
  gap: 10px;
}

.customer-kyc-card .customer-section-head {
  align-items: center;
}

.customer-kyc-step-head {
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.customer-kyc-step-copy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.customer-kyc-step-copy h4 {
  margin: 0;
}

.customer-kyc-step-index {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(210, 177, 93, 0.5);
  background: rgba(53, 47, 24, 0.72);
  color: #f0d996;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.customer-kyc-step-status {
  flex-shrink: 0;
}

.customer-kyc-step-note {
  margin: -2px 0 0;
  color: #d6e8e3;
  font-size: 13px;
  line-height: 1.45;
}

.customer-kyc-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.customer-kyc-form-row .btn {
  min-height: 46px;
  min-width: 126px;
}

.customer-kyc-form-row input,
.customer-kyc-action-row input,
.customer-kyc-card textarea {
  min-height: 46px;
  font-size: 16px;
}

.customer-kyc-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.customer-kyc-otp-inline {
  position: relative;
}

.customer-kyc-otp-inline input {
  width: 100%;
  padding-right: 92px;
}

.customer-kyc-otp-inline-btn {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  min-height: 0;
  min-width: 63px;
  height: 27px;
  margin: 1px 5px;
  padding: 0 9px;
  border-radius: 8px;
  border-color: rgba(219, 182, 97, 0.78);
  background: linear-gradient(145deg, rgba(219, 182, 97, 0.88), rgba(183, 147, 71, 0.9));
  color: #10211e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}

.customer-kyc-action-row .customer-kyc-otp-inline-btn {
  min-height: 0;
  width: auto;
}

.customer-kyc-otp-inline-btn:not(:disabled):hover,
.customer-kyc-otp-inline-btn:not(:disabled):focus-visible {
  border-color: rgba(236, 205, 136, 0.92);
  background: linear-gradient(145deg, rgba(232, 198, 120, 0.95), rgba(197, 160, 80, 0.95));
  color: #091816;
}

.customer-kyc-action-row .btn {
  min-height: 44px;
  min-width: 94px;
}

.customer-kyc-action-row .btn.customer-kyc-otp-inline-btn {
  min-height: 0;
  min-width: 63px;
  height: 27px;
  margin: 1px 5px;
}

.customer-kyc-verify-block {
  border: 1px solid rgba(112, 189, 179, 0.26);
  border-radius: 14px;
  background: rgba(7, 34, 32, 0.7);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.customer-kyc-verify-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.customer-kyc-verify-head strong {
  color: #eaf6f2;
  font-size: 15px;
}

.customer-kyc-doc-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.customer-kyc-doc-summary-item {
  border: 1px solid rgba(111, 188, 178, 0.22);
  border-radius: 12px;
  background: linear-gradient(152deg, rgba(9, 39, 36, 0.78), rgba(6, 28, 25, 0.86));
  padding: 9px 10px;
  display: grid;
  gap: 4px;
}

.customer-kyc-doc-summary-item span {
  color: #bddbd5;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-kyc-doc-summary-item strong {
  color: #edf7f3;
  font-size: 16px;
}

.customer-kyc-doc-type-row {
  margin-top: 0;
}

.customer-kyc-doc-type-pill {
  cursor: pointer;
  border-color: rgba(112, 189, 179, 0.38);
  background: rgba(9, 37, 34, 0.68);
  color: #d4e9e4;
}

.customer-kyc-doc-type-pill.active {
  border-color: rgba(210, 177, 93, 0.65);
  background: linear-gradient(145deg, rgba(210, 177, 93, 0.26), rgba(14, 57, 52, 0.82));
  color: var(--belora-theme-text-strong);
}

.customer-kyc-file-picker {
  display: grid;
  gap: 8px;
}

.customer-kyc-file-label {
  margin: 0;
  color: #bddbd5;
  font-size: 13px;
}

.customer-kyc-file-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.customer-kyc-file-row {
  border: 1px dashed rgba(122, 197, 186, 0.45);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(8, 36, 33, 0.85), rgba(6, 27, 25, 0.85));
  padding: 8px 10px;
  min-height: 48px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.customer-kyc-file-picker:focus-within .customer-kyc-file-row {
  border-color: rgba(210, 177, 93, 0.62);
  box-shadow: 0 0 0 2px rgba(210, 177, 93, 0.14);
}

.customer-kyc-file-browse {
  min-height: 38px;
  min-width: 122px;
  border-color: rgba(122, 197, 186, 0.44);
  background: linear-gradient(145deg, rgba(9, 43, 39, 0.86), rgba(7, 31, 29, 0.86));
}

.customer-kyc-file-browse:not(:disabled):hover {
  border-color: rgba(210, 177, 93, 0.6);
  color: #f3e3b4;
}

.customer-kyc-file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #e4f3ef;
  font-size: 14px;
}

.customer-kyc-file-name.empty {
  color: var(--admin-muted);
  font-style: italic;
}

.customer-kyc-doc-list-head {
  display: grid;
  gap: 3px;
  margin-top: 6px;
}

.customer-kyc-doc-list-head h4 {
  margin: 0;
  color: #edf7f3;
  font-size: 15px;
}

.customer-kyc-doc-list-head small {
  color: #c7dfda;
  font-size: 13px;
}

.customer-doc-list {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

.customer-doc-item {
  border: 1px solid rgba(112, 189, 179, 0.25);
  border-radius: 11px;
  background: rgba(9, 37, 34, 0.7);
  padding: 8px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: #d9ece8;
  font-size: 13px;
  line-height: 1.35;
}

.customer-doc-item-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.customer-doc-item-main strong {
  color: #eef8f5;
  font-size: 14px;
}

.customer-doc-item-main small {
  color: #bfd7d1;
}

.customer-doc-item-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.customer-doc-item:hover {
  text-decoration: none;
  border-color: rgba(210, 177, 93, 0.5);
  color: #f3e3b4;
}

.customer-doc-item:hover small {
  color: #e6d7ac;
}


@media (max-width: 900px) {
  .customer-kyc-hero-head,
  .customer-kyc-step-head,
  .customer-kyc-verify-head {
    flex-direction: column;
    align-items: stretch;
  }

  .customer-doc-item {
    flex-direction: column;
    align-items: stretch;
  }

  .customer-doc-item-meta {
    justify-content: flex-start;
  }

  .customer-kyc-progress-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-kyc-capability-grid,
  .customer-kyc-stage-grid,
  .customer-kyc-doc-summary,
  .customer-kyc-form-row,
  .customer-kyc-action-row {
    grid-template-columns: 1fr;
  }

  .customer-kyc-step-copy {
    width: 100%;
  }

  .customer-kyc-step-status,
  .customer-kyc-form-row .btn,
  .customer-kyc-action-row .btn,
  .customer-kyc-actions .btn,
  .customer-kyc-file-browse {
    width: 100%;
    min-width: 0;
  }

  .customer-kyc-file-row {
    grid-template-columns: 1fr;
  }

  .customer-kyc-otp-inline {
    display: grid;
    gap: 10px;
  }

  .customer-kyc-otp-inline input {
    padding-right: 16px;
  }

  .customer-kyc-action-row .btn.customer-kyc-otp-inline-btn {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    height: auto;
    margin: 0;
    padding: 0 14px;
    justify-self: stretch;
  }
}


.customer-kyc-alert-banner {
  border: 1px solid rgba(210, 177, 93, 0.28);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(38, 48, 24, 0.34), rgba(8, 35, 33, 0.84));
  padding: 10px 12px;
  display: grid;
  gap: 5px;
}

.customer-kyc-alert-banner p {
  margin: 0;
  color: #eef8f4;
  font-size: 14px;
  line-height: 1.45;
}

.customer-kyc-alert-banner.is-approved {
  border-color: rgba(108, 197, 135, 0.38);
  background: linear-gradient(145deg, rgba(17, 63, 40, 0.42), rgba(8, 35, 33, 0.84));
}

.customer-kyc-alert-banner.is-rejected {
  border-color: rgba(218, 110, 122, 0.42);
  background: linear-gradient(145deg, rgba(64, 24, 31, 0.42), rgba(8, 35, 33, 0.84));
}

.customer-kyc-stage-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.customer-kyc-profile-form {
  gap: 12px;
}

.customer-kyc-section-block {
  border: 1px solid rgba(111, 188, 178, 0.24);
  border-radius: 14px;
  background: linear-gradient(152deg, rgba(9, 39, 36, 0.8), rgba(6, 27, 25, 0.88));
  padding: 12px;
  display: grid;
  gap: 10px;
}

.customer-kyc-section-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.customer-kyc-section-block-head h5 {
  margin: 0;
  color: #edf7f3;
  font-size: 16px;
}

.customer-kyc-section-block-head p {
  margin: 4px 0 0;
  color: #c8dfda;
  font-size: 13px;
  line-height: 1.45;
}

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

.customer-kyc-field-span-full {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.customer-kyc-inline-label {
  display: block;
  color: #d4e7e1;
  font-size: 13px;
}

.customer-kyc-field-help {
  margin-top: 4px;
}

.customer-kyc-doc-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.customer-kyc-doc-status-card {
  border: 1px solid rgba(111, 188, 178, 0.24);
  border-radius: 12px;
  background: linear-gradient(152deg, rgba(9, 39, 36, 0.76), rgba(6, 28, 26, 0.86));
  padding: 10px;
  display: grid;
  gap: 4px;
}

.customer-kyc-doc-status-card.is-ready {
  border-color: rgba(105, 197, 134, 0.36);
  background: linear-gradient(152deg, rgba(13, 52, 39, 0.78), rgba(6, 29, 27, 0.88));
}

.customer-kyc-doc-status-card span {
  color: #c0ddd7;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-kyc-doc-status-card strong {
  color: #edf7f3;
  font-size: 16px;
}

.customer-kyc-doc-status-card small {
  color: #bddad4;
  font-size: 13px;
  line-height: 1.4;
}

.customer-kyc-doc-card-note {
  color: #f0d996;
}

.customer-kyc-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.customer-kyc-review-card {
  border: 1px solid rgba(111, 188, 178, 0.22);
  border-radius: 12px;
  background: linear-gradient(152deg, rgba(8, 36, 34, 0.8), rgba(6, 28, 26, 0.88));
  padding: 10px;
  display: grid;
  gap: 4px;
}

.customer-kyc-review-card span {
  color: #bedad4;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-kyc-review-card strong {
  color: #edf7f3;
  font-size: 16px;
}

.customer-kyc-review-card small {
  color: #c4ddd7;
  font-size: 13px;
  line-height: 1.4;
}

.customer-kyc-alert-banner-review {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .customer-kyc-field-grid,
  .customer-kyc-doc-status-grid,
  .customer-kyc-review-grid {
    grid-template-columns: 1fr;
  }
}

/* Unified customer KYC hard override */
.customer-kyc-hero p,
.customer-kyc-progress-meta span,
.customer-kyc-hero-intro,
.customer-kyc-check-item small,
.customer-kyc-next-step,
.customer-kyc-capability-card small,
.customer-kyc-stage-card small,
.customer-kyc-section-block-head p,
.customer-kyc-doc-status-card small,
.customer-kyc-review-card small,
.customer-kyc-inline-label {
  color: var(--belora-theme-text-muted);
}

.customer-kyc-hero-head :is(h3, h4),
.customer-kyc-progress-meta strong,
.customer-kyc-capability-card strong,
.customer-kyc-stage-card strong,
.customer-kyc-check-item strong,
.customer-kyc-section-block-head h5,
.customer-kyc-doc-status-card strong,
.customer-kyc-review-card strong {
  color: var(--belora-theme-text);
}


.customer-kyc-capability-card,
.customer-kyc-stage-card,
.customer-kyc-section-block,
.customer-kyc-doc-status-card,
.customer-kyc-review-card {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-card-gradient);
}

.customer-kyc-capability-card.is-ready,
.customer-kyc-doc-status-card.is-ready {
  border-color: rgba(143, 227, 176, 0.28);
  background: linear-gradient(155deg, rgba(18, 62, 44, 0.82), rgba(6, 28, 35, 0.9));
}

.customer-kyc-capability-card.is-pending {
  border-color: rgba(255, 214, 107, 0.28);
  background: linear-gradient(155deg, rgba(56, 45, 18, 0.34), rgba(6, 28, 35, 0.9));
}

.customer-kyc-capability-head span,
.customer-kyc-stage-head p,
.customer-kyc-doc-status-card span,
.customer-kyc-review-card span {
  color: var(--belora-theme-text-soft);
}

.customer-kyc-check-icon {
  border-color: var(--belora-theme-border-soft);
  background: var(--app-chip-solid-strong-bg);
  color: var(--belora-theme-text);
}

.customer-kyc-check-item.done .customer-kyc-check-icon {
  border-color: rgba(143, 227, 176, 0.34);
  background: rgba(18, 62, 44, 0.84);
  color: var(--belora-theme-green);
}

.customer-kyc-doc-card-note {
  color: var(--belora-theme-gold);
}


/* Unify remaining KYC route controls and feedback surfaces */
.customer-kyc-next-panel,
.customer-kyc-feedback,
.customer-kyc-alert-banner,
.customer-kyc-verify-block,
.customer-doc-item,
.customer-kyc-file-row {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-card-gradient);
}

.customer-kyc-next-panel p,
.customer-kyc-alert-banner p,
.customer-kyc-verify-head strong,
.customer-doc-item,
.customer-doc-item-main strong,
.customer-kyc-doc-list-head h4 {
  color: var(--belora-theme-text);
}

.customer-kyc-feedback-line,
.customer-doc-item-main small,
.customer-kyc-file-label,
.customer-kyc-doc-list-head small,
.customer-kyc-file-name.empty {
  color: var(--belora-theme-text-muted);
}

.customer-kyc-doc-type-pill,
.customer-kyc-file-browse,
.customer-kyc-otp-inline-btn {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-chip-gradient);
  color: var(--belora-theme-text);
}

.customer-kyc-doc-type-pill.active {
  border-color: var(--belora-theme-border-strong);
  background: var(--belora-theme-chip-active-gradient);
  color: var(--belora-theme-text-strong);
}

.customer-kyc-file-browse:not(:disabled):hover,
.customer-kyc-file-browse:not(:disabled):focus-visible,
.customer-kyc-otp-inline-btn:not(:disabled):hover,
.customer-kyc-otp-inline-btn:not(:disabled):focus-visible {
  border-color: var(--belora-theme-border-strong);
  background: var(--app-chip-hover-bg);
  color: var(--app-chip-hover-text);
}

.customer-kyc-step-index {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-chip-gradient);
  color: var(--belora-theme-text);
}

/* Light mode KYC verification cleanup */
body.theme-light .customer-kyc-capability-card.is-ready,
body.theme-light .customer-kyc-doc-status-card.is-ready {
  border-color: var(--app-status-live-border);
  background: linear-gradient(145deg, rgba(223, 242, 232, 0.96), rgba(245, 250, 247, 0.98));
}

body.theme-light .customer-kyc-capability-card.is-pending {
  border-color: var(--app-status-paused-border);
  background: linear-gradient(145deg, rgba(248, 237, 211, 0.96), rgba(255, 250, 241, 0.98));
}

body.theme-light .customer-kyc-next-panel {
  border-color: var(--app-status-paused-border);
  background: linear-gradient(145deg, rgba(248, 237, 211, 0.96), rgba(255, 250, 241, 0.98));
}

body.theme-light .customer-kyc-next-panel p,
body.theme-light .customer-kyc-alert-banner p {
  color: var(--belora-theme-text);
}

body.theme-light .customer-kyc-feedback {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-card-gradient);
}

body.theme-light .customer-kyc-feedback-line.is-success {
  color: var(--app-status-live-text);
}

body.theme-light .customer-kyc-feedback-line.is-error {
  color: var(--belora-theme-danger);
}

body.theme-light .customer-kyc-feedback-line.is-warning {
  color: var(--app-status-paused-text);
}

body.theme-light .customer-kyc-alert-banner {
  border-color: var(--app-status-paused-border);
  background: linear-gradient(145deg, rgba(248, 237, 211, 0.96), rgba(255, 250, 241, 0.98));
}

body.theme-light .customer-kyc-alert-banner.is-approved {
  border-color: var(--app-status-live-border);
  background: linear-gradient(145deg, rgba(223, 242, 232, 0.96), rgba(245, 250, 247, 0.98));
}

body.theme-light .customer-kyc-alert-banner.is-rejected {
  border-color: rgba(255, 180, 168, 0.32);
  background: linear-gradient(145deg, rgba(252, 239, 237, 0.98), rgba(255, 247, 245, 0.98));
}

body.theme-light .customer-kyc-next-panel .customer-kicker,
body.theme-light .customer-kyc-alert-banner .customer-kicker,
body.theme-light .customer-kyc-capability-card.is-pending .customer-kyc-capability-head span,
body.theme-light .customer-kyc-doc-card-note {
  color: var(--app-status-paused-text);
}

body.theme-light .customer-kyc-capability-card.is-ready .customer-kyc-capability-head span,
body.theme-light .customer-kyc-doc-status-card.is-ready span,
body.theme-light .customer-kyc-alert-banner.is-approved .customer-kicker {
  color: var(--app-status-live-text);
}

body.theme-light .customer-kyc-alert-banner.is-rejected .customer-kicker {
  color: var(--belora-theme-danger);
}

body.theme-light .customer-kyc-check-item.done .customer-kyc-check-icon {
  border-color: var(--app-status-live-border);
  background: var(--app-status-live-bg);
  color: var(--app-status-live-text);
}

/* Light mode KYC hero cleanup */
body.theme-light .customer-kyc-hero {
  border-color: var(--belora-theme-border);
  background: var(--belora-theme-hero-gradient);
  box-shadow:
    0 18px 34px rgba(28, 44, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.theme-light .customer-kyc-hero p,
body.theme-light .customer-kyc-progress-meta span,
body.theme-light .customer-kyc-hero-intro,
body.theme-light .customer-kyc-next-step,
body.theme-light .customer-kyc-capability-card small,
body.theme-light .customer-kyc-stage-card small,
body.theme-light .customer-kyc-doc-status-card small,
body.theme-light .customer-kyc-review-card small,
body.theme-light .customer-kyc-capability-head span,
body.theme-light .customer-kyc-stage-head p,
body.theme-light .customer-kyc-doc-status-card span,
body.theme-light .customer-kyc-review-card span {
  color: var(--belora-theme-text-muted);
}

body.theme-light .customer-kyc-hero-head :is(h3, h4),
body.theme-light .customer-kyc-progress-meta strong,
body.theme-light .customer-kyc-check-item strong {
  color: var(--belora-theme-text);
}

body.theme-light .customer-kyc-progress-bar {
  border-color: var(--belora-theme-border-soft);
  background: rgba(255, 255, 255, 0.82);
}

body.theme-light .customer-kyc-step-status.status-approved {
  border-color: var(--app-status-live-border);
  background: var(--app-status-live-bg);
  color: var(--app-status-live-text);
}

body.theme-light .customer-kyc-step-status.status-pending {
  border-color: var(--app-status-paused-border);
  background: var(--app-status-paused-bg);
  color: var(--app-status-paused-text);
}

/* Vault verification redesign */
.customer-kyc-screen {
  --kyc-accent: #f2c23d;
  --kyc-accent-soft: rgba(242, 194, 61, 0.18);
  --kyc-surface: linear-gradient(155deg, rgba(6, 28, 26, 0.96), rgba(3, 18, 16, 0.98));
  --kyc-surface-strong: linear-gradient(160deg, rgba(5, 23, 21, 0.98), rgba(2, 13, 12, 0.99));
  --kyc-surface-soft: linear-gradient(155deg, rgba(10, 40, 36, 0.9), rgba(5, 24, 22, 0.94));
  --kyc-border: rgba(95, 178, 165, 0.22);
  --kyc-border-strong: rgba(242, 194, 61, 0.42);
  --kyc-text: #eef6f2;
  --kyc-muted: #9fb7b1;
  --kyc-soft: #78928d;
  display: grid;
  gap: 18px;
}

.customer-kyc-screen .customer-card {
  border-color: var(--kyc-border);
}

.customer-kyc-vault-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 20px;
  padding: clamp(20px, 2.8vw, 34px);
  border: 1px solid rgba(76, 149, 138, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 194, 61, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(19, 112, 108, 0.22), transparent 30%),
    linear-gradient(160deg, rgba(4, 25, 23, 0.98), rgba(2, 12, 11, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 205, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.26);
}

.customer-kyc-vault-hero::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(95, 178, 165, 0.14);
  pointer-events: none;
}

.customer-kyc-vault-hero-copy,
.customer-kyc-vault-hero-side,
.customer-kyc-vault-sidebar,
.customer-kyc-vault-main,
.customer-kyc-vault-stat-card,
.customer-kyc-vault-security,
.customer-kyc-vault-nav-item,
.customer-kyc-step-card,
.customer-kyc-section-block,
.customer-kyc-doc-status-card,
.customer-kyc-review-card,
.customer-doc-item,
.customer-kyc-file-row,
.customer-kyc-inline-collapse,
.customer-kyc-next-panel {
  position: relative;
  z-index: 1;
}

.customer-kyc-vault-hero-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.customer-kyc-vault-kicker,
.customer-kyc-vault-eyebrow span,
.customer-kyc-vault-track-head span,
.customer-kyc-vault-stat-card span,
.customer-kyc-vault-sidebar-head small,
.customer-kyc-vault-security .customer-kicker,
.customer-kyc-vault-nav-copy small,
.customer-kyc-stage-head p,
.customer-kyc-doc-summary-item span,
.customer-kyc-doc-status-card span,
.customer-kyc-review-card span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.customer-kyc-vault-kicker {
  color: var(--kyc-accent);
}

.customer-kyc-vault-eyebrow {
  display: inline-grid;
  gap: 4px;
}

.customer-kyc-vault-eyebrow span {
  color: var(--kyc-soft);
  font-size: 12px;
}

.customer-kyc-vault-eyebrow strong {
  color: #d8e9e3;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-style: italic;
  font-weight: 500;
}

.customer-kyc-vault-title {
  margin: 0;
  display: grid;
  gap: 2px;
  color: var(--kyc-text);
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(44px, 8vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.customer-kyc-vault-title span {
  color: var(--kyc-accent);
  font-style: italic;
  font-weight: 500;
}

.customer-kyc-vault-intro {
  max-width: 42rem;
  margin: 0;
  color: #b8cbc6;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
}

.customer-kyc-vault-track {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(95, 178, 165, 0.18);
  background: linear-gradient(145deg, rgba(9, 38, 35, 0.84), rgba(5, 23, 21, 0.84));
}

.customer-kyc-vault-track-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.customer-kyc-vault-track-head > div {
  display: grid;
  gap: 4px;
}

.customer-kyc-vault-track-head span {
  color: var(--kyc-soft);
  font-size: 11px;
}

.customer-kyc-vault-track-head strong {
  color: var(--kyc-accent);
  font-size: clamp(26px, 4vw, 40px);
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-weight: 500;
}

.customer-kyc-screen .customer-kyc-progress-bar {
  height: 10px;
  border-radius: 999px;
  border-color: rgba(95, 178, 165, 0.18);
  background: rgba(20, 44, 42, 0.88);
}

.customer-kyc-screen .customer-kyc-progress-bar span {
  background: linear-gradient(90deg, rgba(242, 194, 61, 0.98), rgba(20, 128, 118, 0.86));
}

.customer-kyc-vault-hero-side {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.customer-kyc-vault-stat-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(95, 178, 165, 0.18);
  background: linear-gradient(155deg, rgba(9, 36, 33, 0.94), rgba(5, 22, 20, 0.94));
}

.customer-kyc-vault-stat-card span {
  color: var(--kyc-soft);
  font-size: 11px;
}

.customer-kyc-vault-stat-card strong {
  color: var(--kyc-text);
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.customer-kyc-vault-stat-card p {
  margin: 0;
  color: var(--kyc-text);
  font-size: 18px;
  line-height: 1.55;
}

.customer-kyc-vault-stat-card small {
  color: var(--kyc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.customer-kyc-vault-stat-card.is-accent {
  border-color: rgba(242, 194, 61, 0.24);
  background: linear-gradient(155deg, rgba(18, 47, 41, 0.96), rgba(7, 24, 21, 0.96));
}

.customer-kyc-vault-body {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.customer-kyc-vault-sidebar {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(5, 23, 21, 0.98), rgba(3, 15, 14, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 245, 205, 0.04);
}

.customer-kyc-vault-sidebar-head {
  display: grid;
  gap: 6px;
}

.customer-kyc-vault-sidebar-head strong {
  color: var(--kyc-text);
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: 28px;
  line-height: 1.04;
}

.customer-kyc-vault-sidebar-head small {
  color: var(--kyc-muted);
  font-size: 12px;
}

.customer-kyc-vault-nav {
  display: grid;
  gap: 10px;
}

.customer-kyc-vault-nav-item {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(95, 178, 165, 0.18);
  background: linear-gradient(155deg, rgba(7, 32, 29, 0.92), rgba(4, 21, 19, 0.92));
  color: inherit;
  text-align: left;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.customer-kyc-vault-nav-item:hover,
.customer-kyc-vault-nav-item:focus-visible {
  border-color: rgba(242, 194, 61, 0.34);
  transform: translateY(-1px);
  outline: none;
}

.customer-kyc-vault-nav-item.active {
  border-color: rgba(242, 194, 61, 0.44);
  background: linear-gradient(155deg, rgba(15, 46, 40, 0.96), rgba(6, 25, 22, 0.96));
  box-shadow: inset 3px 0 0 rgba(242, 194, 61, 0.94);
}

.customer-kyc-vault-nav-item.complete .customer-kyc-vault-nav-step {
  border-color: rgba(101, 201, 142, 0.38);
  color: #d6f6e4;
  background: rgba(20, 76, 50, 0.52);
}

.customer-kyc-vault-nav-step {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(95, 178, 165, 0.2);
  background: rgba(9, 37, 34, 0.84);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kyc-accent);
  font-weight: 700;
  font-size: 13px;
}

.customer-kyc-vault-nav-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.customer-kyc-vault-nav-copy strong {
  color: var(--kyc-text);
  font-size: 15px;
  line-height: 1.2;
}

.customer-kyc-vault-nav-copy small {
  color: var(--kyc-muted);
  font-size: 11px;
}

.customer-kyc-vault-main {
  display: grid;
  gap: 18px;
}

.customer-kyc-vault-stage-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.customer-kyc-stage-card-vault {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(95, 178, 165, 0.18);
  background: linear-gradient(155deg, rgba(8, 35, 32, 0.94), rgba(4, 20, 19, 0.96));
  gap: 10px;
}

.customer-kyc-stage-card-vault strong {
  font-size: 28px;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-weight: 500;
}

.customer-kyc-stage-card-vault small {
  color: var(--kyc-muted);
}

.customer-kyc-contact-grid,
.customer-kyc-vault-bottom-grid {
  display: grid;
  gap: 18px;
}

.customer-kyc-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-kyc-vault-bottom-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.customer-kyc-step-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(95, 178, 165, 0.18);
  background: linear-gradient(160deg, rgba(6, 29, 27, 0.96), rgba(3, 16, 15, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 245, 205, 0.03);
  gap: 14px;
}

.customer-kyc-step-card.is-open {
  border-color: rgba(242, 194, 61, 0.32);
  box-shadow:
    inset 3px 0 0 rgba(242, 194, 61, 0.96),
    inset 0 1px 0 rgba(255, 245, 205, 0.03);
}

.customer-kyc-step-card.is-done {
  border-color: rgba(101, 201, 142, 0.26);
}

.customer-kyc-step-card.is-blocked {
  background: linear-gradient(160deg, rgba(7, 28, 26, 0.92), rgba(4, 17, 16, 0.96));
}

.customer-kyc-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.customer-kyc-step-copy {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.customer-kyc-step-index {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(95, 178, 165, 0.22);
  background: rgba(6, 30, 28, 0.88);
  color: var(--kyc-accent);
  font-size: 16px;
}

.customer-kyc-step-copy h4 {
  margin: 0;
  color: var(--kyc-text);
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.98;
}

.customer-kyc-step-copy small,
.customer-kyc-step-note,
.customer-kyc-step-body .helper,
.customer-kyc-step-body .field-error,
.customer-kyc-section-block-head p,
.customer-kyc-doc-list-head small,
.customer-doc-item-main small,
.customer-kyc-file-label,
.customer-kyc-file-name.empty {
  color: var(--kyc-muted);
}

.customer-kyc-step-toolbar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.customer-kyc-screen .customer-kyc-step-status,
.customer-kyc-screen .customer-kyc-stage-pill,
.customer-kyc-screen .customer-kyc-capability-pill {
  white-space: nowrap;
}

.customer-kyc-step-note {
  font-size: 15px;
  line-height: 1.65;
}

.customer-kyc-step-body {
  gap: 14px;
}

.customer-kyc-form-row,
.customer-kyc-action-row {
  gap: 12px;
}

.customer-kyc-screen .customer-kyc-form-row input,
.customer-kyc-screen .customer-kyc-action-row input,
.customer-kyc-screen .customer-kyc-card textarea,
.customer-kyc-screen .customer-kyc-card select {
  border-radius: 16px;
  border: 1px solid rgba(95, 178, 165, 0.18);
  background: rgba(7, 31, 28, 0.84);
  color: var(--kyc-text);
}

.customer-kyc-screen .customer-kyc-card input::placeholder,
.customer-kyc-screen .customer-kyc-card textarea::placeholder {
  color: #6f8a84;
}

.customer-kyc-screen .customer-kyc-form-row .btn,
.customer-kyc-screen .customer-kyc-action-row .btn,
.customer-kyc-screen .customer-kyc-file-browse,
.customer-kyc-screen .customer-kyc-step-toggle,
.customer-kyc-screen .customer-kyc-inline-collapse-btn {
  min-height: 48px;
  border-radius: 16px;
}

.customer-kyc-screen .customer-kyc-form-row .btn:not(.btn-outline),
.customer-kyc-screen .customer-kyc-action-row .btn:not(.btn-outline),
.customer-kyc-screen .customer-kyc-step-body > .btn,
.customer-kyc-screen .customer-kyc-profile-form > .btn {
  border-color: rgba(242, 194, 61, 0.24);
  background: linear-gradient(135deg, rgba(17, 129, 131, 0.92), rgba(70, 96, 42, 0.88));
  color: #f7f6ea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.customer-kyc-screen .customer-kyc-verify-block,
.customer-kyc-screen .customer-kyc-inline-collapse,
.customer-kyc-screen .customer-kyc-next-panel,
.customer-kyc-screen .customer-kyc-vault-security,
.customer-kyc-screen .customer-kyc-section-block,
.customer-kyc-screen .customer-kyc-doc-status-card,
.customer-kyc-screen .customer-kyc-review-card,
.customer-kyc-screen .customer-doc-item,
.customer-kyc-screen .customer-kyc-file-row {
  border-radius: 20px;
  border-color: rgba(95, 178, 165, 0.18);
  background: linear-gradient(155deg, rgba(8, 35, 32, 0.92), rgba(4, 21, 19, 0.96));
}

.customer-kyc-screen .customer-kyc-next-panel,
.customer-kyc-screen .customer-kyc-vault-security {
  padding: 16px 18px;
}

.customer-kyc-screen .customer-kyc-next-panel p,
.customer-kyc-screen .customer-kyc-vault-security p,
.customer-kyc-screen .customer-kyc-alert-banner p,
.customer-kyc-screen .customer-kyc-verify-head strong,
.customer-kyc-screen .customer-doc-item-main strong,
.customer-kyc-screen .customer-kyc-doc-list-head h4,
.customer-kyc-screen .customer-kyc-section-block-head h5,
.customer-kyc-screen .customer-kyc-doc-summary-item strong,
.customer-kyc-screen .customer-kyc-doc-status-card strong,
.customer-kyc-screen .customer-kyc-review-card strong {
  color: var(--kyc-text);
}

.customer-kyc-screen .customer-kyc-doc-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.customer-kyc-screen .customer-kyc-doc-summary-item {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(95, 178, 165, 0.18);
  background: rgba(6, 28, 26, 0.9);
}

.customer-kyc-screen .customer-kyc-doc-status-grid,
.customer-kyc-screen .customer-kyc-review-grid {
  gap: 12px;
}

.customer-kyc-screen .customer-kyc-file-row {
  min-height: 58px;
  padding: 12px 14px;
}

.customer-kyc-screen .customer-kyc-file-browse,
.customer-kyc-screen .customer-kyc-doc-type-pill,
.customer-kyc-screen .customer-kyc-otp-inline-btn {
  border-color: rgba(95, 178, 165, 0.18);
  background: rgba(10, 39, 36, 0.9);
  color: var(--kyc-text);
}

.customer-kyc-screen .customer-kyc-file-browse:not(:disabled):hover,
.customer-kyc-screen .customer-kyc-file-browse:not(:disabled):focus-visible,
.customer-kyc-screen .customer-kyc-doc-type-pill.active,
.customer-kyc-screen .customer-kyc-otp-inline-btn:not(:disabled):hover,
.customer-kyc-screen .customer-kyc-otp-inline-btn:not(:disabled):focus-visible {
  border-color: rgba(242, 194, 61, 0.44);
  background: linear-gradient(145deg, rgba(40, 78, 72, 0.94), rgba(16, 45, 41, 0.94));
  color: #fff3cf;
}

.customer-kyc-screen .customer-kyc-doc-item-meta,
.customer-kyc-screen .customer-doc-item-meta {
  align-items: flex-start;
}

@media (max-width: 1180px) {
  .customer-kyc-vault-body,
  .customer-kyc-vault-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .customer-kyc-vault-hero,
  .customer-kyc-contact-grid,
  .customer-kyc-vault-stage-grid,
  .customer-kyc-screen .customer-kyc-doc-summary,
  .customer-kyc-screen .customer-kyc-doc-status-grid,
  .customer-kyc-screen .customer-kyc-review-grid {
    grid-template-columns: 1fr;
  }

  .customer-kyc-vault-hero {
    padding: 20px;
  }

  .customer-kyc-vault-title {
    font-size: clamp(38px, 14vw, 56px);
  }

  .customer-kyc-vault-track-head,
  .customer-kyc-step-head,
  .customer-kyc-step-toolbar {
    align-items: flex-start;
  }

  .customer-kyc-step-head,
  .customer-kyc-step-toolbar {
    display: grid;
    gap: 12px;
  }

  .customer-kyc-step-toolbar {
    justify-content: stretch;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .customer-kyc-vault-sidebar,
  .customer-kyc-step-card,
  .customer-kyc-vault-stat-card,
  .customer-kyc-stage-card-vault {
    padding: 16px;
  }

  .customer-kyc-vault-nav-item {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 11px 12px;
  }

  .customer-kyc-vault-nav-step,
  .customer-kyc-step-index {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .customer-kyc-step-copy {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .customer-kyc-step-copy h4 {
    font-size: clamp(26px, 9vw, 40px);
  }
}

body.theme-light .customer-kyc-screen {
  --kyc-accent: #a97412;
  --kyc-accent-soft: rgba(169, 116, 18, 0.12);
  --kyc-surface: var(--belora-theme-card-gradient);
  --kyc-surface-strong: var(--belora-theme-card-gradient);
  --kyc-surface-soft: var(--belora-theme-card-gradient);
  --kyc-border: var(--belora-theme-border-soft);
  --kyc-border-strong: rgba(169, 116, 18, 0.28);
  --kyc-text: var(--belora-theme-text);
  --kyc-muted: var(--belora-theme-text-muted);
  --kyc-soft: var(--belora-theme-text-soft);
}

body.theme-light .customer-kyc-screen .customer-card,
body.theme-light .customer-kyc-screen .customer-kyc-inline-collapse,
body.theme-light .customer-kyc-screen .customer-kyc-next-panel,
body.theme-light .customer-kyc-screen .customer-kyc-vault-security,
body.theme-light .customer-kyc-screen .customer-kyc-section-block,
body.theme-light .customer-kyc-screen .customer-kyc-doc-status-card,
body.theme-light .customer-kyc-screen .customer-kyc-review-card,
body.theme-light .customer-kyc-screen .customer-doc-item,
body.theme-light .customer-kyc-screen .customer-kyc-file-row,
body.theme-light .customer-kyc-screen .customer-kyc-doc-summary-item,
body.theme-light .customer-kyc-screen .customer-kyc-vault-nav-item,
body.theme-light .customer-kyc-screen .customer-kyc-vault-stat-card,
body.theme-light .customer-kyc-screen .customer-kyc-stage-card-vault {
  background: var(--belora-theme-card-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

body.theme-light .customer-kyc-screen .customer-kyc-vault-hero {
  background:
    radial-gradient(circle at top right, rgba(169, 116, 18, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(94, 176, 165, 0.14), transparent 30%),
    var(--belora-theme-hero-gradient);
}

body.theme-light .customer-kyc-screen .customer-kyc-vault-track,
body.theme-light .customer-kyc-screen .customer-kyc-progress-bar,
body.theme-light .customer-kyc-screen .customer-kyc-form-row input,
body.theme-light .customer-kyc-screen .customer-kyc-action-row input,
body.theme-light .customer-kyc-screen .customer-kyc-card textarea,
body.theme-light .customer-kyc-screen .customer-kyc-card select,
body.theme-light .customer-kyc-screen .customer-kyc-file-browse,
body.theme-light .customer-kyc-screen .customer-kyc-doc-type-pill,
body.theme-light .customer-kyc-screen .customer-kyc-otp-inline-btn,
body.theme-light .customer-kyc-screen .customer-kyc-vault-nav-step,
body.theme-light .customer-kyc-screen .customer-kyc-step-index {
  background: rgba(255, 255, 255, 0.82);
}

body.theme-light .customer-kyc-screen .customer-kyc-step-card.is-open,
body.theme-light .customer-kyc-screen .customer-kyc-vault-nav-item.active {
  box-shadow: inset 3px 0 0 rgba(169, 116, 18, 0.88), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}


body.theme-light .customer-kyc-screen .customer-kyc-doc-type-pill {
  border-color: rgba(169, 116, 18, 0.22);
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(245, 236, 215, 0.98));
  color: #6b5015;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.theme-light .customer-kyc-screen .customer-kyc-doc-type-pill:not(.active):hover,
body.theme-light .customer-kyc-screen .customer-kyc-doc-type-pill:not(.active):focus-visible {
  border-color: rgba(169, 116, 18, 0.34);
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.99), rgba(240, 226, 188, 0.99));
  color: #5f4510;
}

body.theme-light .customer-kyc-screen .customer-kyc-doc-type-pill.active {
  border-color: rgba(169, 116, 18, 0.5);
  background: linear-gradient(180deg, rgba(247, 219, 137, 0.99), rgba(227, 183, 71, 0.99));
  color: #523907;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 221, 0.92),
    0 10px 22px rgba(169, 116, 18, 0.14);
}

body.theme-light .customer-kyc-screen :is(.customer-kyc-file-browse, .customer-kyc-otp-inline-btn, .customer-kyc-step-toggle, .customer-kyc-inline-collapse-btn) {
  border-color: rgba(63, 112, 104, 0.2);
  background: linear-gradient(180deg, rgba(245, 251, 249, 0.98), rgba(227, 240, 236, 0.98));
  color: #23423f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.theme-light .customer-kyc-screen :is(.customer-kyc-file-browse, .customer-kyc-otp-inline-btn, .customer-kyc-step-toggle, .customer-kyc-inline-collapse-btn):not(:disabled):hover,
body.theme-light .customer-kyc-screen :is(.customer-kyc-file-browse, .customer-kyc-otp-inline-btn, .customer-kyc-step-toggle, .customer-kyc-inline-collapse-btn):not(:disabled):focus-visible {
  border-color: rgba(63, 112, 104, 0.34);
  background: linear-gradient(180deg, rgba(235, 247, 244, 0.99), rgba(210, 232, 226, 0.99));
  color: #1b3633;
}

