/* =========================================================
   RESULTS PAGE — ULTRA PRO DARK + CONVERSION
========================================================= */

.results-body {
    --rs-bg: #050816;
    --rs-bg-soft: #0a1020;
    --rs-bg-card: rgba(11, 18, 32, 0.78);
    --rs-bg-card-strong: rgba(12, 19, 36, 0.95);
    --rs-border: rgba(148, 163, 184, 0.12);
    --rs-border-strong: rgba(96, 165, 250, 0.28);

    --rs-text: #f8fafc;
    --rs-text-soft: #cbd5e1;
    --rs-text-muted: #94a3b8;

    --rs-primary: #3b82f6;
    --rs-primary-2: #7c3aed;
    --rs-accent: #22c55e;
    --rs-danger: #ef4444;
    --rs-warning: #f59e0b;
    --rs-info: #38bdf8;

    --rs-shadow-sm: 0 12px 28px rgba(2, 6, 23, 0.22);
    --rs-shadow-md: 0 18px 44px rgba(2, 6, 23, 0.30);
    --rs-shadow-lg: 0 28px 70px rgba(2, 6, 23, 0.42);

    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 22%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 24%),
        linear-gradient(180deg, #040712 0%, #07101f 45%, #040712 100%);
    color: var(--rs-text);
}

.rs-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 0 28px;
    background:
        radial-gradient(circle at 14% 18%, rgba(59, 130, 246, 0.18), transparent 24%),
        radial-gradient(circle at 84% 14%, rgba(124, 58, 237, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.96) 0%, rgba(8, 15, 32, 0.94) 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.rs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.10;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 42px 42px;
}

.rs-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(59, 130, 246, 0.05), transparent 35%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.34), transparent 40%);
    pointer-events: none;
}

.rs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.rs-hero-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.rs-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.24);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(30, 64, 175, 0.12);
}

.rs-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: var(--rs-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rs-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #ffffff;
    max-width: 980px;
    margin: 0 0 16px;
}

.rs-title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(90deg, #dbeafe 0%, #60a5fa 35%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rs-subtitle {
    max-width: 900px;
    margin: 0 0 26px;
    font-size: 1.04rem;
    line-height: 1.8;
    color: var(--rs-text-soft);
}

/* ===== CONVERSION ADDITIONS ===== */

.rs-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
    margin-bottom: 24px;
}

.rs-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 26px;
}

.rs-proof-card {
    position: relative;
    overflow: hidden;
    padding: 18px 18px 16px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(10, 16, 32, 0.86), rgba(8, 13, 25, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--rs-shadow-sm);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.rs-proof-card::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.14), transparent 72%);
    pointer-events: none;
}

.rs-proof-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.24);
    box-shadow: var(--rs-shadow-md);
}

.rs-proof-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--rs-text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rs-proof-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

/* ===== BUTTONS ===== */

.hero-btn-primary,
.hero-btn-secondary,
.white-outline-btn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.hero-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 18px 35px rgba(59, 130, 246, 0.26);
    border: 1px solid transparent;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(59, 130, 246, 0.34);
}

.hero-btn-secondary {
    color: #ffffff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.24);
    background: rgba(59, 130, 246, 0.08);
}

.white-outline-btn {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.16);
}

/* ===== EXISTING ===== */

.rs-command-board {
    position: relative;
    overflow: hidden;
    margin: 0 0 26px;
    padding: 20px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(7, 12, 24, 0.96), rgba(8, 14, 28, 0.94));
    border: 1px solid rgba(96, 165, 250, 0.16);
    box-shadow: var(--rs-shadow-md);
}

.rs-command-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rs-command-head h3 {
    margin: 6px 0 0;
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
}

.rs-command-status {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.10);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.18);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rs-market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.rs-market-desk {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(255,255,255,0.035);
}

.rs-market-desk strong {
    display: block;
    margin: 10px 0 10px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 900;
}

.rs-market-desk p {
    margin: 0;
    color: var(--rs-text-soft);
    line-height: 1.7;
    font-size: 0.93rem;
}

.rs-market-desk.crypto {
    background: linear-gradient(180deg, rgba(10, 22, 42, 0.92), rgba(8, 16, 30, 0.94));
}

.rs-market-desk.forex {
    background: linear-gradient(180deg, rgba(14, 24, 18, 0.92), rgba(8, 16, 12, 0.94));
}

.rs-market-desk.indices {
    background: linear-gradient(180deg, rgba(29, 18, 11, 0.92), rgba(18, 11, 7, 0.94));
}

.rs-market-label {
    display: inline-flex;
    min-height: 28px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    color: #ffffff;
    font-size: 0.70rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-market-tape {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rs-market-tape span {
    min-height: 36px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--rs-text-soft);
    font-weight: 800;
    font-size: 0.84rem;
}

.rs-filters-card {
    padding: 18px;
    border-radius: 24px;
    background: rgba(10, 16, 32, 0.70);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--rs-shadow-sm);
    backdrop-filter: blur(12px);
    margin-bottom: 26px;
}

.rs-filters {
    display: grid;
    gap: 14px;
}

.rs-filter-block {
    display: grid;
    gap: 10px;
}

.rs-filter-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rs-text-muted);
}

.rs-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rs-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--rs-text-soft);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: 0.24s ease;
}

.rs-pill:hover {
    transform: translateY(-2px);
    color: #ffffff;
    border-color: rgba(96, 165, 250, 0.30);
    background: rgba(59, 130, 246, 0.10);
}

.rs-pill.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.28);
}

.rs-pill-secondary.active {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    box-shadow: 0 18px 35px rgba(99, 102, 241, 0.24);
}

.rs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rs-stat {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--rs-border);
    box-shadow: var(--rs-shadow-sm);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.rs-stat::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    pointer-events: none;
}

.rs-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--rs-shadow-md);
    border-color: rgba(96, 165, 250, 0.20);
}

.rs-stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.rs-stat-tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-stat-icon {
    font-size: 1.15rem;
    opacity: 0.88;
}

.rs-stat strong {
    display: block;
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
    margin: 18px 0 8px;
}

.rs-stat small {
    color: inherit;
    opacity: 0.86;
    font-size: 0.95rem;
}

.rs-stat-dark {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(9, 14, 26, 0.95));
    color: #ffffff;
}
.rs-stat-dark .rs-stat-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
}

.rs-stat-green {
    background: linear-gradient(180deg, rgba(6, 28, 16, 0.95), rgba(5, 22, 14, 0.94));
    color: #dcfce7;
    border-color: rgba(34, 197, 94, 0.18);
}
.rs-stat-green .rs-stat-tag {
    color: #86efac;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.16);
}

.rs-stat-red {
    background: linear-gradient(180deg, rgba(43, 10, 10, 0.95), rgba(30, 8, 8, 0.94));
    color: #fee2e2;
    border-color: rgba(239, 68, 68, 0.18);
}
.rs-stat-red .rs-stat-tag {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.16);
}

.rs-stat-blue {
    background: linear-gradient(180deg, rgba(8, 26, 56, 0.95), rgba(8, 18, 42, 0.94));
    color: #dbeafe;
    border-color: rgba(59, 130, 246, 0.18);
}
.rs-stat-blue .rs-stat-tag {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.16);
}

.rs-main {
    padding: 26px 0 90px;
}

.rs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.42fr);
    gap: 24px;
    align-items: start;
}

.rs-content,
.rs-sidebar {
    display: grid;
    gap: 22px;
}

.rs-panel,
.rs-side-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 26px;
    background: rgba(10, 16, 32, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--rs-shadow-sm);
    backdrop-filter: blur(14px);
}

.rs-panel-glow::before,
.rs-side-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.14), transparent 70%);
    pointer-events: none;
}

.rs-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.rs-panel-head-split {
    align-items: center;
}

.rs-panel-head h2 {
    margin: 6px 0 8px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.rs-panel-kicker {
    display: inline-block;
    color: #60a5fa;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-panel-desc {
    color: var(--rs-text-muted);
    line-height: 1.75;
    max-width: 720px;
    margin: 0;
}

.rs-head-counter {
    min-width: 110px;
    text-align: right;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.rs-head-counter span {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
}

.rs-head-counter small {
    color: var(--rs-text-muted);
    font-size: 0.84rem;
}

.rs-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.rs-strip-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: 0.24s ease;
}

.rs-strip-card:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.22);
}

.rs-strip-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.76rem;
    color: var(--rs-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.rs-strip-card strong {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 900;
}

.rs-performance-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.rs-quality-card,
.rs-mini-insight-card {
    padding: 20px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.rs-quality-card {
    background: linear-gradient(135deg, #081120, #111c32);
    color: white;
    border: 1px solid rgba(96, 165, 250, 0.18);
    box-shadow: 0 20px 44px rgba(2, 6, 23, 0.26);
}

.rs-quality-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.16), transparent 70%);
    pointer-events: none;
}

.rs-quality-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.rs-quality-head span {
    color: rgba(255,255,255,0.76);
    font-size: 0.85rem;
    font-weight: 700;
}

.rs-quality-head strong {
    color: white;
    font-size: 1.9rem;
    font-weight: 900;
}

.rs-quality-track {
    width: 100%;
    height: 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    margin-bottom: 14px;
}

.rs-quality-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #3b82f6, #7c3aed);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.35);
}

.rs-quality-card p {
    color: rgba(255,255,255,0.84);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.rs-mini-insight-card {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--rs-shadow-sm);
}

.rs-mini-insight-card h3 {
    margin: 8px 0 12px;
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 900;
}

.rs-mini-insight-card p {
    color: var(--rs-text-soft);
    line-height: 1.75;
    margin: 0 0 16px;
}

.rs-upgrade-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 18px 35px rgba(59, 130, 246, 0.24);
}

.rs-equity-wrap {
    margin-top: 18px;
}

.rs-equity-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9, 15, 30, 0.96), rgba(6, 11, 22, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--rs-shadow-sm);
}

.rs-equity-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.rs-equity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rs-mini-pill {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: var(--rs-text-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.rs-equity-chart {
    width: 100%;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(148, 163, 184, 0.10);
}

.rs-equity-svg {
    width: 100%;
    height: 280px;
    display: block;
}

.rs-equity-legend {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.rs-legend-card {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.rs-legend-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--rs-text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rs-legend-card strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.rs-signal-list {
    display: grid;
    gap: 18px;
}

.rs-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 16, 32, 0.92), rgba(7, 12, 24, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--rs-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rs-shadow-md);
    border-color: rgba(96, 165, 250, 0.20);
}

.rs-featured-card {
    border: 1px solid rgba(34, 197, 94, 0.20);
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(10, 16, 32, 0.94), rgba(7, 12, 24, 0.98));
}

.rs-featured-card::before {
    content: "BEST SETUP";
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.18);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

.rs-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
    pointer-events: none;
}

.rs-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rs-card-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rs-badge-asset {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.22);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.rs-action.buy {
    color: #4ade80;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.rs-action.sell {
    color: #f87171;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.rs-card-date {
    color: var(--rs-text-muted);
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
}

.rs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.rs-metric {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.rs-metric span {
    display: block;
    margin-bottom: 6px;
    color: var(--rs-text-muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rs-metric strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.rs-metric-win {
    background: linear-gradient(180deg, rgba(8, 35, 18, 0.92), rgba(6, 24, 14, 0.92)) !important;
    border: 1px solid rgba(34, 197, 94, 0.18) !important;
}
.rs-metric-win span {
    color: #86efac !important;
}
.rs-metric-win strong {
    color: #dcfce7 !important;
}

.rs-metric-loss {
    background: linear-gradient(180deg, rgba(41, 10, 10, 0.92), rgba(26, 8, 8, 0.92)) !important;
    border: 1px solid rgba(239, 68, 68, 0.18) !important;
}
.rs-metric-loss span {
    color: #fca5a5 !important;
}
.rs-metric-loss strong {
    color: #fee2e2 !important;
}

.rs-metric-neutral {
    background: linear-gradient(180deg, rgba(9, 28, 54, 0.92), rgba(8, 18, 40, 0.92)) !important;
    border: 1px solid rgba(59, 130, 246, 0.18) !important;
}
.rs-metric-neutral span {
    color: #93c5fd !important;
}
.rs-metric-neutral strong {
    color: #dbeafe !important;
}

.rs-reason {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.10);
    color: white;
}

.rs-reason-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #93c5fd;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-reason p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
}

.rs-card-actions {
    margin-top: 12px;
}

.rs-card-actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.learn-btn {
    margin-top: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.24s ease;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
}

.learn-btn:hover {
    transform: translateY(-2px);
}

.rs-secondary-btn {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 1px solid rgba(96, 165, 250, 0.18);
}

.learn-box {
    display: none;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--rs-text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.locked-learn-btn {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    border: 1px solid rgba(96, 165, 250, 0.18);
}

.rs-locked-card {
    border: 1px dashed rgba(96, 165, 250, 0.28);
    background: linear-gradient(180deg, rgba(13, 20, 36, 0.96), rgba(8, 13, 24, 0.96));
}

.rs-lock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.16);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rs-stat-locked,
.rs-strip-card-locked,
.rs-side-locked {
    position: relative;
    overflow: hidden;
}

.rs-stat-locked::before,
.rs-strip-card-locked::before,
.rs-side-locked::before,
.rs-quality-locked::before {
    content: "Réservé";
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.16);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}

.rs-stat-locked {
    border-color: rgba(239, 68, 68, 0.18);
}

.rs-strip-card-locked strong {
    color: #fca5a5;
}

.rs-quality-locked {
    position: relative;
}

.rs-quality-locked .rs-quality-fill {
    background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.24));
    box-shadow: none;
}

.rs-side-locked {
    border: 1px dashed rgba(239, 68, 68, 0.18);
}

.rs-upgrade-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
    line-height: 1.7;
    font-size: 0.94rem;
}

.rs-upgrade-note strong {
    color: #ffffff;
}

.rs-empty {
    padding: 28px;
    border-radius: 22px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}

.rs-empty h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 900;
}

.rs-empty p {
    margin: 0;
    color: var(--rs-text-muted);
    line-height: 1.7;
}

.rs-side-dark {
    background: linear-gradient(180deg, rgba(7, 12, 24, 0.96), rgba(3, 7, 18, 0.98));
    color: white;
    border: 1px solid rgba(96, 165, 250, 0.16);
    box-shadow: var(--rs-shadow-md);
}

.rs-side-card h3 {
    margin: 6px 0 14px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
}

.rs-side-card p {
    color: var(--rs-text-soft);
    line-height: 1.75;
}

.rs-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.rs-side-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(148, 163, 184, 0.10);
    color: var(--rs-text-soft);
    line-height: 1.6;
    font-size: 0.94rem;
}

.rs-side-list strong {
    color: #ffffff;
}

.rs-nav-links {
    display: grid;
    gap: 12px;
}

.rs-nav-link {
    display: block;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(148, 163, 184, 0.12);
    text-decoration: none;
    transition: all 0.25s ease;
}

.rs-nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.18);
    border-color: rgba(96, 165, 250, 0.22);
}

.rs-nav-link strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.rs-nav-link span {
    color: var(--rs-text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.rs-final-cta {
    position: relative;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.14), transparent 24%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(5, 8, 22, 0.96), rgba(7, 10, 24, 0.98));
    border-top: 1px solid rgba(148, 163, 184, 0.10);
}

.rs-final-cta .final-cta-box {
    background: linear-gradient(135deg, rgba(10, 16, 32, 0.90), rgba(14, 22, 40, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--rs-shadow-md);
}

.rs-final-cta .final-cta-badge {
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #93c5fd;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.status-win {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.status-loss {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.status-open {
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.18);
}

@media (max-width: 1200px) {
    .rs-proof-strip,
    .rs-stats-grid,
    .rs-strip,
    .rs-grid,
    .rs-equity-legend {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-layout,
    .rs-performance-grid {
        grid-template-columns: 1fr;
    }

    .rs-market-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rs-hero {
        padding: 30px 0 16px;
    }

    .rs-title {
        font-size: 2.25rem;
        line-height: 1.06;
    }

    .rs-subtitle {
        font-size: 0.98rem;
    }

    .rs-proof-strip,
    .rs-stats-grid,
    .rs-strip,
    .rs-grid,
    .rs-equity-legend {
        grid-template-columns: 1fr;
    }

    .rs-card-head,
    .rs-panel-head,
    .rs-panel-head-split,
    .rs-command-head,
    .rs-equity-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .rs-head-counter {
        width: 100%;
        text-align: left;
    }

    .rs-panel,
    .rs-side-card,
    .rs-card,
    .rs-stat,
    .rs-command-board,
    .rs-market-desk,
    .rs-filters-card,
    .rs-equity-card,
    .rs-proof-card {
        padding: 20px;
    }

    .learn-btn,
    .hero-btn-primary,
    .hero-btn-secondary,
    .white-outline-btn {
        width: 100%;
        justify-content: center;
    }

    .rs-card-actions-row,
    .rs-hero-actions {
        flex-direction: column;
    }

    .rs-stat-locked::before,
    .rs-strip-card-locked::before,
    .rs-side-locked::before,
    .rs-quality-locked::before {
        top: 10px;
        right: 10px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .rs-kicker,
    .rs-plan-badge {
        font-size: 10px;
        min-height: 34px;
        padding: 0 12px;
    }

    .rs-title {
        font-size: 1.9rem;
    }

    .rs-subtitle {
        font-size: 0.94rem;
    }

    .rs-filters-card,
    .rs-panel,
    .rs-side-card,
    .rs-card,
    .rs-stat,
    .rs-strip-card,
    .rs-command-board,
    .rs-market-desk,
    .rs-equity-card,
    .rs-proof-card {
        padding: 16px;
        border-radius: 18px;
    }

    .rs-panel-head h2 {
        font-size: 1.55rem;
    }

    .rs-stat strong {
        font-size: 2rem;
    }

    .rs-card-date {
        white-space: normal;
    }

    .rs-nav-link {
        padding: 16px;
        border-radius: 16px;
    }

    .rs-upgrade-note,
    .rs-reason,
    .learn-box {
        font-size: 13px;
    }

    .rs-proof-card strong {
        font-size: 1.32rem;
    }
}

/* =========================================================
   RESULTS FILTERS — PRO SELECT DROPDOWNS
   Remplace les pills par 3 menus propres sans changer les routes.
========================================================= */
.rs-filters-card-pro {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 16px !important;
    align-items: end;
    margin-top: 22px;
    margin-bottom: 26px;
    padding: 18px !important;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.11), transparent 32%),
        linear-gradient(180deg, rgba(10, 16, 32, 0.82), rgba(5, 9, 18, 0.78));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.30);
    backdrop-filter: blur(16px);
}

.rs-filter-select-card {
    position: relative;
    min-width: 0;
}

.rs-filter-select-card .rs-filter-label {
    display: block;
    margin-bottom: 8px;
    color: #cfe9ff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.rs-select-wrap {
    position: relative;
}

.rs-select-wrap::after {
    content: "▾";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #67e8f9;
    font-size: 13px;
    pointer-events: none;
}

.rs-pro-select {
    width: 100%;
    min-height: 52px;
    appearance: none;
    -webkit-appearance: none;
    padding: 0 44px 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(3, 7, 18, 0.96));
    color: #f8fafc;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
    outline: none;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,0.22);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.rs-pro-select:hover {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.36);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 34px rgba(56, 189, 248, 0.10);
}

.rs-pro-select:focus {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14), 0 18px 38px rgba(34, 197, 94, 0.10);
}

.rs-pro-select option {
    background: #07101f;
    color: #f8fafc;
    font-weight: 800;
}

@media (max-width: 900px) {
    .rs-filters-card-pro {
        grid-template-columns: 1fr !important;
    }
}



/* =====================================
   FILTER DROPDOWN ULTRA PRO (BUTTON STYLE)
===================================== */

.rs-filters-card-pro {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10,16,32,0.9), rgba(5,10,20,0.9));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.rs-select {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.rs-select label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

/* STYLE BOUTON */
.rs-select select {
    appearance: none;
    background: linear-gradient(135deg, #020617, #0f172a);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.rs-select select:hover {
    background: linear-gradient(135deg, #1e3a8a, #020617);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

/* FOCUS */
.rs-select select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
}

/* COULEURS PAR TYPE */
#market-type {
    background: linear-gradient(135deg, #0f172a, #020617);
}

#asset-list {
    background: linear-gradient(135deg, #020617, #1e293b);
}

#timeframe {
    background: linear-gradient(135deg, #020617, #111827);
}


/* FIX DROPDOWN PRO SOBRE */
.rs-filters-card-pro {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(10, 16, 32, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.rs-select {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rs-select label {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-select select {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    outline: none;
}

.rs-select select:hover {
    border-color: rgba(34, 197, 94, 0.55);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(6, 78, 59, 0.58));
}

.rs-select select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
}

/* BOUTON PRINCIPAL VERT/PRO */
.hero-btn-primary {
    color: #03110b !important;
    background: linear-gradient(135deg, #5eead4, #22c55e) !important;
    border: 1px solid rgba(94, 234, 212, 0.35) !important;
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.28) !important;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(34, 197, 94, 0.38) !important;
}

/* FIX DATE SUPERPOSÉE */
.rs-featured-card::before {
    top: 16px !important;
    right: 16px !important;
    z-index: 4 !important;
}

.rs-card-date {
    position: relative;
    z-index: 5;
    margin-right: 118px;
    color: #94a3b8;
}

.rs-card-head {
    align-items: flex-start;
}

/* mobile */
@media (max-width: 900px) {
    .rs-filters-card-pro {
        grid-template-columns: 1fr;
    }

    .rs-card-date {
        margin-right: 0;
        margin-top: 8px;
    }

    .rs-featured-card::before {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin-bottom: 12px;
        display: inline-flex;
    }
}


/* FIX FINAL MENU SELECT */
.rs-filters-card-pro {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
    gap: 18px !important;
    padding: 22px !important;
    border-radius: 24px !important;
    background: rgba(10, 16, 32, 0.86) !important;
    border: 1px solid rgba(148, 163, 184, 0.16) !important;
}

.rs-select select,
.rs-select-shell select,
#market-type,
#asset-list,
#timeframe {
    width: 100% !important;
    height: 56px !important;
    border-radius: 999px !important;
    padding: 0 18px !important;
    background-color: #0f172a !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    outline: none !important;
}

.rs-select select:hover,
.rs-select-shell select:hover,
#market-type:hover,
#asset-list:hover,
#timeframe:hover {
    border-color: rgba(34, 197, 94, 0.55) !important;
    background-color: #10251f !important;
}

.rs-select select option,
.rs-select-shell select option,
#market-type option,
#asset-list option,
#timeframe option {
    background-color: #0f172a !important;
    color: #ffffff !important;
}

.hero-btn-primary {
    color: #03110b !important;
    background: linear-gradient(135deg, #5eead4, #22c55e) !important;
    border: 1px solid rgba(94, 234, 212, 0.35) !important;
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.28) !important;
}

.rs-card-date {
    margin-right: 140px !important;
}

@media (max-width: 900px) {
    .rs-filters-card-pro {
        grid-template-columns: 1fr !important;
    }

    .rs-card-date {
        margin-right: 0 !important;
    }
}
