/* Life Path Numerology — RT-FUN-078
   Widget styling. The form shell + ad/section styling come from the platform
   tool layout; this file scopes the np-* (numerology) result components.
   INDIGO theme (accent #4338CA). Loaded automatically by show.blade.php. */

.np-form { display: flex; flex-direction: column; gap: 14px; }

.np-disclaimer {
  padding: 10px 14px; background: #eef2ff; border-left: 3px solid #4338CA;
  border-radius: 0 6px 6px 0; font-size: 12.5px; color: var(--rt-accent); line-height: 1.5;
}

.np-inputs {
  display: grid; grid-template-columns: 1fr; gap: 12px; padding: 16px;
  background: var(--rt-surface-2); border: 1px solid var(--rt-hairline); border-radius: 8px;
}

.np-field label {
  font-family: var(--rt-font-mono); font-size: 11px; color: var(--rt-ink-muted);
  text-transform: uppercase; letter-spacing: .04em; font-weight: 600;
  display: block; margin-bottom: 4px;
}
.np-field input {
  padding: 10px 12px; border: 1px solid var(--rt-hairline); border-radius: 6px;
  font-size: 15px; background: #fff; width: 100%;
}
.np-field input:focus {
  outline: none; border-color: #4338CA; box-shadow: 0 0 0 3px rgba(67,56,202,.12);
}

.np-hint { padding: 8px 12px; background: #eef2ff; border-radius: 6px; font-size: 12px; color: var(--rt-ink-muted); font-style: italic; }

.np-actions { display: flex; gap: 8px; }
.np-btn {
  padding: 10px 18px; font-size: 13px; border-radius: 6px; cursor: pointer;
  font-family: var(--rt-font-mono); text-transform: uppercase; letter-spacing: .04em; font-weight: 600;
}
.np-btn-go { background: #4338CA; color: #fff; border: 1px solid #3730A3; }
.np-btn-go:hover { background: #3730A3; }
.np-btn-reset { background: #fff; color: #4338CA; border: 1px solid rgba(67,56,202,.4); }

.np-results { padding: 0; background: transparent; }
.np-empty { padding: 16px; text-align: center; color: var(--rt-ink-muted); font-style: italic; }

/* Big Life Path Number display */
.np-number-card {
  padding: 22px 18px; background: var(--rt-result-bg); color: var(--rt-result-ink);
  border: 1px solid rgba(67,56,202,.22); border-radius: 12px; text-align: center; margin-bottom: 14px;
}
.np-number-master { border: 1.5px solid #a5b4fc; box-shadow: 0 0 0 3px rgba(99,102,241,.14); }
.np-number-lead {
  font-family: var(--rt-font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; font-weight: 700; color: var(--rt-result-muted); margin-bottom: 6px;
}
.np-number-big {
  font-family: var(--rt-font-sans); font-size: 64px; line-height: 1; font-weight: 800;
  color: #a5b4fc; margin-bottom: 8px;
}
.np-number-title { font-family: var(--rt-font-sans); font-size: 17px; font-weight: 600; color: var(--rt-result-ink); }
.np-master-badge {
  display: inline-block; margin-top: 10px; padding: 3px 12px; border-radius: 999px;
  background: rgba(165,180,252,.18); color: #c7d2fe; font-size: 11.5px; font-weight: 700;
  font-family: var(--rt-font-mono); text-transform: uppercase; letter-spacing: .05em;
}

/* Reduction steps */
.np-steps { padding: 14px 18px; background: var(--rt-bg-inset); border-radius: 8px; margin-bottom: 14px; }
.np-steps-title {
  font-family: var(--rt-font-mono); font-size: 11.5px; color: var(--rt-ink-muted);
  text-transform: uppercase; letter-spacing: .04em; font-weight: 700; margin-bottom: 10px;
}
.np-step { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 13.5px; border-bottom: 1px dashed rgba(0,0,0,.06); }
.np-step:last-child { border-bottom: none; }
.np-step-lbl { color: var(--rt-ink-muted); font-family: var(--rt-font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .03em; font-weight: 600; }
.np-step-val { color: var(--rt-ink); text-align: right; font-variant-numeric: tabular-nums; }
.np-step-final .np-step-val strong { color: #4338CA; font-size: 15px; }

/* Meaning sections */
.np-meaning { display: flex; flex-direction: column; gap: 12px; }
.np-essence {
  padding: 14px 18px; background: var(--rt-surface-2); border: 1px solid var(--rt-hairline);
  border-left: 4px solid #4338CA; border-radius: 8px;
}
.np-essence-lbl, .np-trait-lbl, .np-careers-lbl {
  font-family: var(--rt-font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .04em; font-weight: 700; color: var(--rt-ink-muted); margin-bottom: 8px;
}
.np-essence p, .np-careers p { font-size: 14.5px; color: var(--rt-ink); line-height: 1.6; margin: 0; }

.np-traits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .np-traits { grid-template-columns: 1fr; } }
.np-trait-block { padding: 14px 16px; border-radius: 8px; border: 1px solid var(--rt-hairline); background: #fff; }
.np-trait-strengths { border-left: 4px solid #16a34a; }
.np-trait-challenges { border-left: 4px solid #d97706; }
.np-trait-block ul { margin: 0; padding-left: 18px; }
.np-trait-block li { font-size: 13.5px; color: var(--rt-ink); line-height: 1.55; margin-bottom: 4px; }
.np-trait-block li:last-child { margin-bottom: 0; }

.np-careers {
  padding: 14px 18px; background: var(--rt-surface-2); border: 1px solid var(--rt-hairline);
  border-radius: 8px;
}
