/* ==========================================================================
   FUNDEDSOURCE — INVESTORS V2 PAGE STYLES
   Layout geometry, page-specific gradients, and decision rail compositions.
   (Does NOT redefine canonical design system cards, borders, buttons, or fonts)
   ========================================================================== */

/* 1. Page-Specific Text Gradients */
.text-indigo-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 40%, #6366f1 75%, #33d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cool-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 40%, #38bdf8 70%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-silver-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 2. Decision Rail Step Indicator */
.journey-step-num {
  font-family: var(--font, 'Saira', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--source-cyan, #33d2ff);
}

/* 3. Mandate Matrix Pill */
.mandate-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

/* 4. Form Control Focus */
.mandate-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mandate-input:focus {
  outline: none;
  border-color: var(--source-cyan, #33d2ff);
  box-shadow: 0 0 0 2px rgba(51, 210, 255, 0.2);
}

.mandate-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
