/* Dating Profile Search — LinkChart OSINT tool */

.dps-page {
  --dps-accent: #0ea5e9;
  --dps-accent-soft: #38bdf8;
  --dps-accent-dim: rgba(14, 165, 233, 0.14);
  --dps-border: rgba(148, 163, 184, 0.28);
  --dps-surface: #1e293b;
  --dps-surface-raised: #273549;
  --dps-input-bg: #334155;
  --dps-input-border: rgba(203, 213, 225, 0.22);
  --dps-text: #f8fafc;
  --dps-muted: #94a3b8;
  --dps-line: rgba(56, 189, 248, 0.45);
  --dps-card-bg: rgba(30, 41, 59, 0.92);
  --dps-card-border: rgba(148, 163, 184, 0.24);
}

.dps-page.dps-flow {
  --dps-border: rgba(148, 163, 184, 0.32);
  --dps-input-bg: #3d4f66;
  --dps-card-bg: rgba(36, 48, 68, 0.96);
}

.dps-hero {
  padding: 2.75rem 0 3.25rem;
  max-width: 40rem;
}

.dps-hero .landing-badge {
  margin-bottom: 1.15rem;
}

.dps-hero__title {
  justify-content: flex-start;
  text-align: left;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.1rem);
}

.dps-hero__lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  text-align: left;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #9aa8b8;
}

.dps-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 1.85rem;
}

.dps-hero__cta {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.dps-hero-meta {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--dps-muted);
}

.dps-page.dps-flow .dps-seo,
.dps-page.dps-flow .dps-seo-wide,
.dps-page.dps-flow .landing-footer {
  display: none;
}

.dps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.dps-btn--primary {
  background: #2563eb;
  border-color: #3b82f6;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.28);
}

.dps-btn--primary:hover {
  background: #1d4ed8;
}

.dps-btn--ghost {
  background: transparent;
  border-color: var(--dps-border);
  color: var(--dps-text);
}

.dps-btn--ghost:hover {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.dps-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.dps-btn.is-loading:disabled {
  opacity: 1;
  cursor: wait;
}

.dps-btn__spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: dps-spin 0.7s linear infinite;
}

.dps-btn__spinner--lg {
  width: 1.65rem;
  height: 1.65rem;
  border-width: 2.5px;
  border-color: rgba(56, 189, 248, 0.25);
  border-top-color: #38bdf8;
}

.dps-busy-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  color: #94a3b8;
  font-size: 0.875rem;
}

.dps-busy-note[hidden] {
  display: none;
}

.dps-busy-note .dps-btn__spinner {
  border-color: rgba(148, 163, 184, 0.25);
  border-top-color: #38bdf8;
}

.dps-panel.is-busy .dps-form-stack,
.dps-panel.is-busy .dps-card {
  pointer-events: none;
  opacity: 0.62;
  transition: opacity 0.2s ease;
}

.dps-app {
  padding: 0;
}

.dps-app-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.dps-wizard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .dps-wizard {
    grid-template-columns: 13.5rem minmax(0, 1fr);
    gap: 2.25rem;
  }
}

.dps-wizard__rail {
  position: sticky;
  top: 1.25rem;
}

.dps-stepper__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.dps-stepper__list::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .dps-stepper__list {
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding: 0.85rem;
    border-radius: 14px;
    border: 1px solid var(--dps-card-border);
    background: var(--dps-card-bg);
    box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.55);
  }
}

.dps-stepper__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: #64748b;
}

@media (min-width: 900px) {
  .dps-stepper__item {
    padding: 0.85rem 0.65rem;
  }

  .dps-stepper__item + .dps-stepper__item {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
  }
}

.dps-stepper__marker {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(51, 65, 85, 0.55);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.dps-stepper__text {
  display: none;
  min-width: 0;
}

@media (min-width: 900px) {
  .dps-stepper__text {
    display: block;
    padding-top: 0.2rem;
  }
}

.dps-stepper__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.25;
}

.dps-stepper__hint {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}

.dps-stepper__item.is-active {
  color: #e2e8f0;
  background: rgba(14, 165, 233, 0.1);
}

.dps-stepper__item.is-active .dps-stepper__marker {
  border-color: rgba(14, 165, 233, 0.65);
  background: rgba(14, 165, 233, 0.2);
  color: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.dps-stepper__item.is-active .dps-stepper__label {
  color: #f1f5f9;
}

.dps-stepper__item.is-done .dps-stepper__marker {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
}

.dps-stepper__item.is-done .dps-stepper__label {
  color: #94a3b8;
}

.dps-wizard__body {
  min-width: 0;
}

.dps-wizard__toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.85rem;
}

.dps-btn--start-over {
  font-size: 0.875rem;
  color: #94a3b8;
  border-color: rgba(148, 163, 184, 0.22);
  padding: 0.45rem 0.85rem;
}

.dps-btn--start-over:hover {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(127, 29, 29, 0.12);
}

.dps-panel {
  padding: 1.5rem 1.35rem 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--dps-card-border);
  background:
    linear-gradient(180deg, rgba(42, 54, 74, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 56px -32px rgba(0, 0, 0, 0.65);
}

@media (min-width: 720px) {
  .dps-panel {
    padding: 2rem 2.15rem 2.25rem;
  }
}

.dps-panel__head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.dps-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.55rem;
  color: #ffffff;
}

.dps-sub {
  color: #b6c2d1;
  margin: 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
}

.dps-form-stack {
  display: grid;
  gap: 1.15rem;
}

.dps-card {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(51, 65, 85, 0.35);
  overflow: visible;
  position: relative;
}

.dps-card.is-dropdown-open {
  z-index: 40;
}

.dps-card--location .dps-card__body {
  position: relative;
  z-index: 1;
}

.dps-card--soft {
  background: rgba(51, 65, 85, 0.22);
  border-style: dashed;
}

.dps-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.25);
}

.dps-card__badge {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.35);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7dd3fc;
}

.dps-card__title h3 {
  margin: 0;
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.dps-card__optional {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.dps-card__body {
  padding: 1.15rem 1.15rem 1.25rem;
}

@media (min-width: 720px) {
  .dps-card__body {
    padding: 1.25rem 1.35rem 1.4rem;
  }
}

.dps-section {
  margin: 0 0 2.15rem;
}

.dps-section__label {
  margin: 0 0 1rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.dps-grid {
  display: grid;
  gap: 1.15rem 1.35rem;
  grid-template-columns: 1fr 1fr;
}

.dps-field {
  min-width: 0;
}

.dps-field--full {
  grid-column: 1 / -1;
}

.dps-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #dbeafe;
  margin-bottom: 0.5rem;
}

.dps-field input,
.dps-field select,
.dps-field textarea {
  width: 100%;
  padding: 0.82rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--dps-input-border);
  background: var(--dps-input-bg);
  color: var(--dps-text);
  font: inherit;
  font-size: 0.975rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.dps-field .dps-place .dps-place__input {
  padding: 0.9rem 2.75rem 0.9rem 3.15rem;
  font-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
}

.dps-field .dps-place .dps-place__input::-webkit-search-decoration,
.dps-field .dps-place .dps-place__input::-webkit-search-cancel-button,
.dps-field .dps-place .dps-place__input::-webkit-search-results-button {
  -webkit-appearance: none;
  display: none;
}

.dps-field input::placeholder {
  color: #7c8ca0;
}

.dps-field input:hover,
.dps-field select:hover,
.dps-place__input:hover {
  border-color: rgba(203, 213, 225, 0.35);
  background: #42556d;
}

.dps-field input:focus,
.dps-field select:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.7);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
  background: #42556d;
}

.dps-age-row {
  display: grid;
  grid-template-columns: 7.5rem auto 7.5rem;
  align-items: center;
  gap: 0.65rem;
}

.dps-age-dash {
  color: #64748b;
  text-align: center;
}

.dps-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dps-choice button {
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--dps-input-border);
  background: var(--dps-input-bg);
  color: #cbd5e1;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.dps-choice button:hover {
  border-color: rgba(203, 213, 225, 0.4);
  background: #42556d;
  color: #f1f5f9;
}

.dps-choice button.is-on {
  border-color: rgba(14, 165, 233, 0.75);
  background: rgba(14, 165, 233, 0.22);
  color: #e0f2fe;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
}

.dps-place {
  position: relative;
  z-index: 1;
}

.dps-place.is-open {
  z-index: 50;
}

.dps-place__input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--dps-input-border);
  background: var(--dps-input-bg);
  color: var(--dps-text);
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.dps-place.is-loading .dps-place__input {
  padding-right: 2.75rem;
}

.dps-place__status {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.dps-place.is-loading .dps-place__status {
  display: block;
}

.dps-place:not(.is-loading) .dps-place__status {
  display: none;
}

.dps-place__input::placeholder {
  color: #7c8ca0;
}

.dps-place__input:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.7);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
  background: #42556d;
}

.dps-place__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.dps-place.is-loading .dps-place__icon {
  color: #64748b;
}

.dps-place__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 200;
  max-height: 16.5rem;
  overflow: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 12px;
  background: #3d4f66;
  box-shadow:
    0 16px 40px -12px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.dps-place__list[hidden] {
  display: none;
}

.dps-place__option {
  padding: 0.7rem 0.8rem;
  border-radius: 7px;
  cursor: pointer;
}

.dps-place__option:hover,
.dps-place__option.is-active {
  background: rgba(56, 189, 248, 0.1);
}

.dps-place__name {
  display: block;
  color: #f1f5f9;
  font-size: 0.9375rem;
}

.dps-place__meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #7c8ca0;
}

.dps-place__empty {
  padding: 0.8rem;
  color: #64748b;
  font-size: 0.875rem;
}

.dps-place__loading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.dps-place__spinner {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(148, 163, 184, 0.25);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: dps-spin 0.65s linear infinite;
}

@keyframes dps-spin {
  to { transform: rotate(360deg); }
}

.dps-selected {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
}

.dps-selected strong {
  display: block;
  font-size: 1.05rem;
  color: #f8fafc;
}

.dps-selected span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.dps-selected button {
  background: none;
  border: none;
  color: #7dd3fc;
  font: inherit;
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0;
}

.dps-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}

.dps-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: var(--dps-input-bg);
  color: #e2e8f0;
  font-size: 0.8125rem;
}

.dps-chip button {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 0.15rem;
}

.dps-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.dps-more {
  margin: 0 0 0.5rem;
}

.dps-more summary {
  cursor: pointer;
  color: #7dd3fc;
  font-weight: 500;
  font-size: 0.9375rem;
}

.dps-more .dps-grid {
  margin-top: 1.1rem;
}

.dps-photo-demo-note {
  display: inline-block;
  margin-top: 0.85rem;
}

.dps-photo-seeding {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 14rem;
  text-align: center;
  color: #cbd5e1;
}

.dps-photo-seeding p {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: #e2e8f0;
}

.dps-photo-seeding span:last-child {
  color: #94a3b8;
  font-size: 0.875rem;
}

.dps-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .dps-photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.dps-photo-slot {
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.35);
}

.dps-photo-slot img {
  width: calc(100% + 2.2rem);
  margin: -1.1rem -1.1rem 0.35rem;
  height: 11rem;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.dps-photo-slot.is-ready {
  border-style: solid;
  border-color: rgba(103, 232, 249, 0.28);
}

.dps-photo-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.dps-photo-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--dps-muted);
}

.dps-photo-status {
  font-size: 0.8125rem;
  color: #67e8f9;
}

.dps-photo-actions button {
  background: none;
  border: none;
  color: var(--dps-accent);
  cursor: pointer;
  padding: 0;
  font: inherit;
  font-size: 0.8125rem;
}

.dps-review {
  display: grid;
  gap: 1.5rem;
}

.dps-review__person {
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.dps-review__meta {
  margin: 0.35rem 0 0;
  color: var(--dps-muted);
}

.dps-review dl {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.65rem 1rem;
  margin: 0;
}

.dps-review dt {
  color: #64748b;
  font-size: 0.8125rem;
}

.dps-review dd {
  margin: 0;
  color: #e2e8f0;
}

.dps-viz {
  min-height: 320px;
  position: relative;
}

.dps-faceid__head h2 {
  margin-bottom: 0.35rem;
}

.dps-faceid__kicker {
  margin: 0;
  color: #94a3b8;
  font-size: 0.975rem;
  letter-spacing: 0.01em;
  min-height: 1.5em;
  transition: color 0.4s ease;
}

.dps-faceid.is-complete .dps-faceid__kicker {
  color: #7dd3fc;
}

.dps-faceid__layout {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-top: 1.35rem;
}

@media (min-width: 760px) {
  .dps-faceid__layout {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 2.25rem;
  }
}

.dps-faceid__device {
  width: min(100%, 268px);
  margin: 0 auto;
  aspect-ratio: 9 / 13.2;
  padding: 9px;
  border-radius: 38px;
  background: linear-gradient(165deg, #5c5c62 0%, #2c2c2e 38%, #141416 100%);
  box-shadow:
    0 28px 64px -28px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(8px) scale(0.98);
  opacity: 0.72;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.dps-faceid__device.is-live {
  transform: none;
  opacity: 1;
}

.dps-faceid__island {
  position: absolute;
  z-index: 6;
  top: 18px;
  left: 50%;
  width: 86px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
  box-shadow: 0 0 0 4px #050505;
}

.dps-faceid__device {
  position: relative;
}

.dps-faceid__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #050506;
}

.dps-faceid__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.72) contrast(1.08) brightness(0.78);
  transform: scale(1.04);
  transition: filter 1.2s ease, transform 4s ease;
}

.dps-faceid__device.is-scanning .dps-faceid__photo {
  filter: saturate(0.45) contrast(1.15) brightness(0.62);
}

.dps-faceid__device.is-locked .dps-faceid__photo {
  filter: saturate(0.85) contrast(1.05) brightness(0.88);
  transform: scale(1);
}

.dps-faceid__photo--empty {
  background:
    radial-gradient(circle at 50% 36%, #334155 0%, #0f172a 70%);
}

.dps-faceid__mesh,
.dps-faceid__traces,
.dps-faceid__scan,
.dps-faceid__ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dps-faceid__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 50%;
  background: rgba(186, 230, 253, 0.18);
  opacity: 0;
  transform: scale(0.4);
  box-shadow: 0 0 0 0 rgba(125, 211, 252, 0);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}

.dps-faceid__dot.is-hot {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
}

.dps-faceid__dot.is-on {
  opacity: 1;
  transform: scale(1);
  background: #e0f2fe;
  box-shadow: 0 0 8px 1px rgba(125, 211, 252, 0.55);
}

.dps-faceid__dot.is-hot.is-on {
  background: #fff;
  box-shadow: 0 0 10px 2px rgba(56, 189, 248, 0.7);
}

.dps-faceid__device.is-locked .dps-faceid__dot.is-on {
  animation: dps-dot-breathe 2.4s ease-in-out infinite;
}

.dps-faceid__scan {
  height: 34%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(125, 211, 252, 0.08) 40%,
    rgba(224, 242, 254, 0.22) 50%,
    rgba(125, 211, 252, 0.08) 60%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(-120%);
}

.dps-faceid__device.is-scanning .dps-faceid__scan {
  opacity: 1;
  animation: dps-face-scan 5.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dps-faceid__ring {
  margin: auto;
  width: 78%;
  height: 62%;
  border: 1.5px solid rgba(125, 211, 252, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.92);
}

.dps-faceid__device.is-live .dps-faceid__ring {
  opacity: 1;
  animation: dps-face-ring 2.8s ease-out infinite;
}

.dps-faceid__device.is-locked .dps-faceid__ring {
  animation: none;
  opacity: 0.55;
  border-color: rgba(125, 211, 252, 0.55);
  transform: scale(1);
}

.dps-faceid__traces {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.dps-faceid__device.is-landmarks .dps-faceid__traces {
  opacity: 1;
}

.dps-faceid__trace {
  fill: none;
  stroke: rgba(224, 242, 254, 0.85);
  stroke-width: 0.7;
  stroke-linecap: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}

.dps-faceid__device.is-landmarks .dps-faceid__trace {
  animation: dps-trace-draw 1.4s ease forwards;
}

.dps-faceid__trace--nose {
  animation-delay: 0.35s;
}

.dps-faceid__trace--mouth {
  animation-delay: 0.6s;
}

.dps-faceid__trace--jaw {
  animation-delay: 0.85s;
}

.dps-faceid__signals {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dps-faceid__signals li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #64748b;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.45s ease;
}

.dps-faceid__signals li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.dps-faceid__signals li.is-done {
  color: #e2e8f0;
}

.dps-faceid__signals li.is-done span {
  background: #7dd3fc;
  border-color: #7dd3fc;
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.55);
}

.dps-faceid__id {
  margin: 0.85rem 0 0;
  min-height: 1.25em;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #7dd3fc;
  text-align: center;
}

.dps-fp-progress {
  margin-top: 1.35rem;
}

.dps-fp-progress-bar {
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  overflow: hidden;
}

.dps-fp-progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #e0f2fe);
  transition: width 0.45s ease;
}

@keyframes dps-face-scan {
  0% { transform: translateY(-80%); }
  100% { transform: translateY(220%); }
}

@keyframes dps-face-ring {
  0% { transform: scale(0.92); opacity: 0.55; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}

@keyframes dps-trace-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes dps-dot-breathe {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .dps-faceid__device,
  .dps-faceid__photo,
  .dps-faceid__dot,
  .dps-faceid__scan,
  .dps-faceid__ring {
    animation: none !important;
    transition: none !important;
  }
}

.dps-scan__head h2 {
  margin-bottom: 0.35rem;
}

.dps-scan__status {
  margin: 0;
  min-height: 1.4em;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dps-scan__status strong {
  color: #7dd3fc;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
}

.dps-scan__fp {
  margin: 1.25rem 0 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.32);
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.12), rgba(15, 23, 42, 0.55));
}

.dps-scan__fp-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
  font-weight: 600;
}

.dps-scan__fp-id {
  display: block;
  margin-top: 0.35rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f8fafc;
}

.dps-scan__fp-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.45;
}

.dps-scan__checked {
  margin: 0 0 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.75));
  text-align: center;
}

.dps-scan__checked-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}

.dps-scan__checked-value {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(2.75rem, 8vw, 4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #f8fafc;
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.dps-scan__checked-sub {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.875rem;
  color: #64748b;
}

.dps-scan__checked-sub span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: #94a3b8;
}

.dps-scan__hits {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: linear-gradient(145deg, rgba(4, 47, 46, 0.45), rgba(15, 23, 42, 0.4));
}

.dps-scan__hits-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5eead4;
  font-weight: 600;
}

.dps-scan__hits-value {
  display: block;
  margin-top: 0.1rem;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f8fafc;
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.dps-scan__hits-value.is-pop {
  animation: dps-hit-pop 0.45s ease;
}

.dps-scan__hit-feed {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.dps-scan__lead {
  font-size: 0.8125rem;
  color: #99f6e4;
}

.dps-scan__platforms-label {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
}

.dps-scan__platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

@media (min-width: 640px) {
  .dps-scan__platforms {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.dps-scan__platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #e2e8f0;
}

.dps-scan__platform-logo {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  overflow: hidden;
}

.dps-scan__platform-logo svg {
  width: 1.35rem;
  height: 1.35rem;
}

.dps-scan__ok {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.dps-scan__platform--tinder .dps-scan__platform-logo {
  background: linear-gradient(145deg, #fd267a, #ff6b4a);
}

.dps-scan__platform--bumble .dps-scan__platform-logo {
  background: #ffc629;
}

.dps-scan__platform--hinge .dps-scan__platform-logo {
  background: #f3f1f0;
}

.dps-scan__platform--okcupid .dps-scan__platform-logo {
  background: #0500ff;
}

.dps-scan__platform--match .dps-scan__platform-logo {
  background: #e91e63;
}

.dps-scan__platform--pof .dps-scan__platform-logo {
  background: #ff6b35;
}

.dps-scan .dps-candidate-stream {
  margin-top: 0;
  max-height: 150px;
  min-height: 120px;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--dps-border);
  background: rgba(2, 6, 23, 0.35);
}

.dps-scan__skip {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

@keyframes dps-hit-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); color: #5eead4; }
  100% { transform: scale(1); }
}

.dps-search-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .dps-search-layout {
    grid-template-columns: minmax(0, 1fr) 14rem;
  }

  .dps-app-inner {
    max-width: 68rem;
  }
}

.dps-search-network {
  min-height: 280px;
  border: 1px solid var(--dps-border);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
}

.dps-search-center {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--dps-accent);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--dps-accent);
}

.dps-candidate-stream {
  margin-top: 8.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  max-height: 140px;
  overflow: hidden;
}

.dps-candidate-line {
  display: flex;
  justify-content: space-between;
  padding: 0.28rem 0;
  color: var(--dps-muted);
}

.dps-candidate-line.is-match {
  color: #fde68a;
}

.dps-search-stats {
  font-size: 0.8125rem;
  color: var(--dps-muted);
}

.dps-search-stats dt {
  font-weight: 600;
  color: var(--dps-text);
  margin-top: 0.85rem;
}

.dps-search-stats dd {
  margin: 0.2rem 0 0;
  font-family: "JetBrains Mono", monospace;
}

.dps-demo-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(251, 191, 36, 0.12);
  color: #fcd34d;
  margin-bottom: 0.85rem;
}

.dps-results-panel,
.dps-scan {
  position: relative;
}

.dps-prototype-pill {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

.dps-prototype-note {
  margin: 0 0 1rem;
  color: #94a3b8;
  font-size: 0.92rem;
  max-width: 40rem;
}

.dps-openai-panel {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.dps-openai-progress {
  margin: 0 0 0.65rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: #cbd5e1;
}

.dps-openai-debug-wrap {
  margin: 0 0 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.55);
  padding: 0.55rem 0.7rem;
}

.dps-openai-debug-wrap summary {
  cursor: pointer;
  font-size: 0.78rem;
  color: #94a3b8;
  user-select: none;
}

.dps-openai-debug {
  margin: 0.55rem 0 0;
  max-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  line-height: 1.45;
  color: #e2e8f0;
}

.dps-scan__skip .dps-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.dps-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .dps-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.dps-phone {
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 0.75rem;
  background: linear-gradient(180deg, #101826, #070b12);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.dps-phone:hover {
  transform: translateY(-3px);
  border-color: var(--dps-accent);
}

.dps-phone-photo {
  position: relative;
  height: 240px;
  border-radius: 20px;
  background: linear-gradient(160deg, #1e293b, #0f172a 70%);
  background-size: cover;
  background-position: center top;
  margin-bottom: 0.85rem;
}

.dps-phone-photo--detail {
  max-width: 280px;
  margin-bottom: 1rem;
}

.dps-phone-photo--locked {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
}

.dps-phone-photo--strong {
  background: linear-gradient(165deg, #134e4a 0%, #0f172a 58%, #042f2e 100%);
}

.dps-phone-photo--likely {
  background: linear-gradient(165deg, #7c2d12 0%, #1c1917 58%, #431407 100%);
}

.dps-phone-photo--possible {
  background: linear-gradient(165deg, #1e3a5f 0%, #0f172a 58%, #172554 100%);
}

.dps-phone--strong {
  border-color: rgba(45, 212, 191, 0.45);
}

.dps-phone--likely {
  border-color: rgba(251, 146, 60, 0.45);
}

.dps-phone--possible {
  border-color: rgba(96, 165, 250, 0.4);
}

.dps-phone--strong:hover {
  border-color: #2dd4bf;
}

.dps-phone--likely:hover {
  border-color: #fb923c;
}

.dps-phone--possible:hover {
  border-color: #60a5fa;
}

.dps-score {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.dps-score--strong {
  background: rgba(4, 47, 46, 0.82);
  color: #5eead4;
}

.dps-score--likely {
  background: rgba(67, 20, 7, 0.84);
  color: #fdba74;
}

.dps-score--possible {
  background: rgba(23, 37, 84, 0.84);
  color: #93c5fd;
}

.dps-score__value {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.dps-score__value small {
  font-size: 0.7rem;
  margin-left: 0.1rem;
  font-weight: 600;
}

.dps-score__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: right;
}

.dps-phone-photo--locked .dps-score {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: calc(100% - 1.4rem);
  margin-top: 0.35rem;
}

.dps-phone-photo--locked::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -35deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 10px
    );
  opacity: 0.7;
  pointer-events: none;
}

.dps-phone-photo--strong::after,
.dps-phone-photo--likely::after,
.dps-phone-photo--possible::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dps-phone-photo--strong::after {
  background: radial-gradient(circle at 50% 20%, rgba(45, 212, 191, 0.28), transparent 58%);
}

.dps-phone-photo--likely::after {
  background: radial-gradient(circle at 50% 20%, rgba(251, 146, 60, 0.28), transparent 58%);
}

.dps-phone-photo--possible::after {
  background: radial-gradient(circle at 50% 20%, rgba(96, 165, 250, 0.28), transparent 58%);
}

.dps-lock-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.72);
}

.dps-lock-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 16px;
  transform: translate(-50%, -35%);
  border: 2px solid #94a3b8;
  border-radius: 3px;
  box-shadow: 0 -9px 0 -4px #94a3b8;
}

.dps-lock-label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}

.dps-phone--locked {
  cursor: pointer;
}

.dps-locked-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.dps-paywall {
  margin-top: 1.75rem;
}

.dps-paywall-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(8, 12, 22, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.08), transparent 42%);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.35);
}

@media (min-width: 860px) {
  .dps-paywall-card {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: start;
    padding: 1.75rem 1.85rem;
  }
}

.dps-paywall-copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  color: #f8fafc;
}

.dps-paywall-copy p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
}

.dps-paywall-features {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.dps-paywall-features li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  color: #e2e8f0;
  font-size: 0.9375rem;
}

.dps-paywall-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: 700;
}

.dps-paywall-action {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dps-paywall-price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dps-paywall-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.1;
}

.dps-paywall-note {
  font-size: 0.875rem;
  color: #94a3b8;
}

.dps-btn--unlock {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.dps-paywall-secure {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.dps-paywall-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dps-trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.65);
  color: #cbd5e1;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dps-trust-badge--stripe {
  color: #7dd3fc;
  border-color: rgba(56, 189, 248, 0.35);
}

.dps-paywall-fine {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #64748b;
}

.dps-paywall-fine strong {
  color: #94a3b8;
  font-weight: 600;
}

.dps-phone-meta {
  padding: 0 0.35rem 0.55rem;
}

.dps-phone-meta strong {
  display: block;
  color: #f8fafc;
  font-size: 1.05rem;
}

.dps-phone-meta span {
  color: var(--dps-muted);
  font-size: 0.875rem;
}

.dps-confidence {
  margin-top: 0.55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  color: #67e8f9;
}

.dps-detail-signals {
  margin: 1.35rem 0;
  border-top: 1px solid var(--dps-border);
  border-bottom: 1px solid var(--dps-border);
  padding: 1.15rem 0;
}

.dps-signal-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
}

.dps-disclaimer {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--dps-muted);
  margin: 1.15rem 0 0;
  padding: 0.15rem 0 0.15rem 1rem;
  border-left: 2px solid var(--dps-line);
}

.dps-error {
  color: #fca5a5;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.dps-unavailable {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--dps-muted);
}

.dps-seo {
  max-width: 40rem;
  margin: 1rem 0 0;
  padding: 0 0 4.5rem;
  color: var(--dps-muted);
}

.dps-seo h2 {
  color: #e2e8f0;
  margin-top: 2.75rem;
  letter-spacing: -0.02em;
}

.dps-steps-list {
  padding-left: 1.25rem;
  line-height: 1.65;
}

.dps-cta-block {
  margin: 2.75rem 0;
  padding: 0;
  border: none;
  background: none;
}

.dps-faq dt {
  color: #e2e8f0;
  font-weight: 600;
  margin-top: 1.15rem;
}

.dps-faq dd {
  margin: 0.4rem 0 0;
  line-height: 1.6;
}

.dps-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

@media (max-width: 720px) {
  .dps-grid,
  .dps-age-row {
    grid-template-columns: 1fr;
  }

  .dps-age-dash {
    display: none;
  }

  .dps-panel {
    padding: 1.25rem 1rem 1.5rem;
    border-radius: 14px;
  }

  .dps-wizard__rail {
    position: static;
  }
}
