
Copy

/* ═══════════════════════════════════════════
   LifeEquality — Negotiation Tracker v1.1
   Theme: #000 bg · #D833FF purple · pill btns
   ═══════════════════════════════════════════ */

/* ── LOGIN NOTICE ── */
.le-login-notice {
    color: #aaaaaa;
    font-size: 14px;
    padding: 20px;
    border: 1px solid #222;
    border-radius: 8px;
    text-align: center;
}
.le-login-notice a { color: #D833FF; text-decoration: none; }

/* ── WRAPPER ── */
.negotiation-journey {
    display: flex;
    flex-direction: column;
    max-width: 560px;
    padding: 8px 0 24px;
}

/* ── PROGRESS BAR ── */
.le-progress-wrap {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1E1E1E;
}

.le-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.le-progress-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555555;
}

.le-progress-count {
    font-size: 12px;
    font-weight: 600;
    color: #D833FF;
}

.le-progress-track {
    height: 3px;
    background: #1E1E1E;
    border-radius: 2px;
    overflow: hidden;
}

.le-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D833FF, #E055FF);
    border-radius: 2px;
    transition: width 0.6s ease;
}

/* ── INDIVIDUAL STAGE ── */
.stage {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 28px;
    position: relative;
}

/* Vertical connector line — drawn on all but last */
.stage:not(.last)::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: #1E1E1E;
    z-index: 0;
}

/* Completed stages get a green connector */
.stage.completed:not(.last)::before {
    background: linear-gradient(180deg, #22C55E, #052e16);
}

/* ── ICON CIRCLE ── */
.icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: #1A1A1A;
    border: 2px solid #2A2A2A;
}

.stage.completed .icon {
    background: #22C55E;
    border-color: #22C55E;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.stage.active .icon {
    background: #1A001F;
    border-color: #D833FF;
    box-shadow: 0 0 16px rgba(216, 51, 255, 0.35);
    animation: le-pulse 2.5s ease-in-out infinite;
}

@keyframes le-pulse {
    0%, 100% { box-shadow: 0 0 14px rgba(216, 51, 255, 0.3); }
    50%       { box-shadow: 0 0 28px rgba(216, 51, 255, 0.6); }
}

.icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.stage.completed .icon img { filter: brightness(0) invert(1); }
.stage.upcoming  .icon img { opacity: 0.5; }

/* ── CONTENT ── */
.content {
    display: flex;
    flex-direction: column;
    padding-top: 2px;
}

/* ── STAGE NUMBER ── */
.stage-num {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 3px;
    display: block;
}

.stage.active    .stage-num   { color: #D833FF; }
.stage.completed .stage-num   { color: #22C55E; opacity: 0.6; }

/* ── STAGE TITLE ── */
.stage-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.stage-title:hover                  { color: #D833FF; }
.stage.active    .stage-title       { color: #D833FF; }
.stage.completed .stage-title       { color: #ffffff; }
.stage.upcoming  .stage-title       { color: #888888; }
.stage.upcoming  .stage-title:hover { color: #D833FF; }

/* ── STAGE DESCRIPTION ── */
.stage-desc {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: #888888;
}

.stage.upcoming .stage-desc { color: #666666; }

/* ── CONTINUE BUTTON ── */
.stage-complete-btn {
    display: inline-block;
    margin-top: 10px;
    width: fit-content;
    background: #D833FF;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 6px 16px;
    border-radius: 50px;
    border: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    line-height: 1.4;
    cursor: pointer;
}

.stage-complete-btn:hover {
    background: #E055FF !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(216, 51, 255, 0.4);
    text-decoration: none !important;
}

/* ── COMPLETED LABEL ── */
.stage-done-label {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #22C55E;
    opacity: 0.8;
    letter-spacing: 0.3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .stage      { gap: 12px; }
    .stage-title { font-size: 14px; }
}


/* ═══════════════════════════════════════════
   WELCOME BOX
   Targets .welcome-box — no HTML changes needed
   ═══════════════════════════════════════════ */

.welcome-box {
    position: relative;
    background: #080808 !important;
    border: 1px solid #1e1e1e !important;
    border-radius: 12px !important;
    padding: 36px 40px 32px !important;
    margin-bottom: 32px !important;
    overflow: hidden !important;
    isolation: isolate;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.welcome-box:hover {
    border-color: #2e1a38 !important;
    box-shadow: 0 0 48px rgba(216, 51, 255, 0.08), 0 4px 32px rgba(0, 0, 0, 0.5);
}

/* Top glow line */
.welcome-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D833FF 35%, #b020e0 65%, transparent 100%);
    opacity: 0.75;
    z-index: 2;
}

/* Mesh gradient backdrop */
.welcome-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 95% 5%,  rgba(216, 51, 255, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 45% 55% at 0%  90%,  rgba(140, 20, 200, 0.07) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Heading */
.welcome-box h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(24px, 4.5vw, 34px) !important;
    font-weight: 900 !important;
    color: #D833FF !important;
    margin: 0 0 10px !important;
    letter-spacing: -0.8px !important;
    line-height: 1.15 !important;
}

/* Subtext */
.welcome-box p {
    position: relative;
    z-index: 1;
    font-size: 13px !important;
    color: #666666 !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    max-width: 440px;
}

@media (max-width: 480px) {
    .welcome-box { padding: 24px 20px !important; }
}