/* ============================================================
   Vivid Frequency v6.2 — InPrivy custom CSS
   The Spiritual Agency · secrets.spiritual.agency
   Written against the live public-share DOM (16 Aug 2026)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

:root {
  --vf-void: #0D0D1A;
  --vf-parchment: #FAFAF7;
  --vf-spirit-blue: #0896F2;
  --vf-shakti-pink: #FF0060;
  /* Adjust stops if the canonical Shakti Gradient differs */
  --vf-shakti-gradient: linear-gradient(135deg, #FF0060 0%, #0896F2 100%);
  --vf-ink: #1A1A2E;          /* body text on parchment */
  --vf-ink-soft: #55556B;     /* secondary text */
  --vf-line: rgba(13, 13, 26, 0.12);
}

/* ---------- Page frame ---------- */

body {
  background-color: var(--vf-void) !important;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
  color: var(--vf-ink);
}

/* Light band behind the logo → seamless Void */
.bg-slate-100 {
  background-color: var(--vf-void) !important;
  position: relative;
}

/* Signature: thin Shakti gradient rule under the header band */
.bg-slate-100::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--vf-shakti-gradient);
}

.logo img {
  filter: drop-shadow(0 0 24px rgba(8, 150, 242, 0.25));
}

/* ---------- Card ---------- */

.content .bg-white {
  background-color: var(--vf-parchment) !important;
  border: 1px solid var(--vf-line);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55) !important;
}

.content p {
  font-weight: 500;
  color: var(--vf-ink);
}

.content label {
  font-weight: 700;
  color: var(--vf-ink);
  letter-spacing: 0.01em;
}

/* Required asterisk: red → Shakti Pink */
.text-red-700 {
  color: var(--vf-shakti-pink) !important;
}

/* ---------- Fields ---------- */

.field {
  background-color: #FFFFFF !important;
  border: 1px solid var(--vf-line) !important;
  border-radius: 10px !important;
  color: var(--vf-ink) !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field::placeholder {
  color: var(--vf-ink-soft);
  opacity: 0.6;
}

.field:focus {
  outline: none !important;
  border-color: var(--vf-spirit-blue) !important;
  box-shadow: 0 0 0 3px rgba(8, 150, 242, 0.22) !important;
}

/* ---------- FilePond upload zone ---------- */

.filepond--panel-root {
  background-color: rgba(8, 150, 242, 0.05) !important;
  border: 1.5px dashed rgba(8, 150, 242, 0.45) !important;
  border-radius: 10px !important;
}

.filepond--drop-label {
  color: var(--vf-ink-soft) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 500;
}

.filepond--item-panel {
  background-color: var(--vf-void) !important;
}

/* ---------- Button ---------- */

.btn {
  background: var(--vf-shakti-gradient) !important;
  background-color: var(--vf-shakti-pink) !important; /* fallback */
  color: #FFFFFF !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(255, 0, 96, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  background: var(--vf-shakti-gradient) !important;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 0, 96, 0.45);
}

.btn:focus-visible {
  outline: 3px solid var(--vf-spirit-blue) !important;
  outline-offset: 2px;
}

/* ---------- Links (revealed-secret / other pages) ---------- */

a {
  color: var(--vf-spirit-blue);
}

a:hover {
  color: var(--vf-shakti-pink);
}

/* ---------- Accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  .btn,
  .field {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}
