/* assets/css/scouts.css */
/* Dark-themed Scout landing + dashboard (fits Fusellit typography & spacing) */

.scout-hero {
    background: linear-gradient(135deg, #121826 0%, #0f172a 45%, #111827 100%);
    color: #f8fafc;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.scout-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(255,112,1,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.scout-hero::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(179,123,182,0.22) 0%, transparent 70%);
    border-radius: 50%;
}

.scout-hero .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 900px) {
    .scout-hero .hero-grid {
        grid-template-columns: 1fr;
    }
}

.scout-hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 14px;
}

.scout-hero p.lead {
    font-size: 1.1rem;
    color: rgba(248,250,252,0.82);
    margin-bottom: 22px;
}

.scout-hero .bullets {
    margin: 0;
    padding-left: 18px;
    color: rgba(248,250,252,0.78);
}

.scout-hero .cta-row {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scout-card {
    background: rgba(17,24,39,0.78);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 20px 35px rgba(0,0,0,0.25);
    border-radius: 18px;
    padding: 26px;
    position: relative;
}

.scout-card h3 {
    margin-bottom: 8px;
}

.scout-card .muted {
    color: rgba(248,250,252,0.78);
}

.scout-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(248,250,252,0.9);
    font-weight: 700;
    font-size: 0.9rem;
}

.scout-kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 18px;
}

@media (max-width: 900px) {
    .scout-kpi {
        grid-template-columns: 1fr;
    }
}

.scout-stat {
    background: #0b1220;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px;
}

.scout-stat .label {
    font-size: 0.85rem;
    color: rgba(248,250,252,0.7);
    margin-bottom: 6px;
}

.scout-stat .value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.scout-section {
    padding: 60px 0;
    background: #0b1220;
    color: #f8fafc;
}

.scout-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.scout-section .subtitle {
    color: rgba(248,250,252,0.72);
    margin-bottom: 22px;
}

.scout-linkbox {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.scout-linkbox input {
    min-width: 320px;
    max-width: 520px;
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #0e1830;
    color: #fff;
    outline: none;
}

.scout-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.scout-table th, .scout-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    vertical-align: middle;
}

.scout-table th {
    color: rgba(248,250,252,0.7);
    font-size: 0.85rem;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.scout-table td {
    color: rgba(248,250,252,0.92);
}

.status-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.78rem;
    border: 1px solid rgba(255,255,255,0.12);
}

.status-pending { background: rgba(245,158,11,0.12); color: #fbbf24; border-color: rgba(245,158,11,0.25); }
.status-active  { background: rgba(59,130,246,0.12); color: #93c5fd; border-color: rgba(59,130,246,0.25); }
.status-closed  { background: rgba(34,197,94,0.12); color: #86efac; border-color: rgba(34,197,94,0.25); }
.status-paid    { background: rgba(16,185,129,0.12); color: #6ee7b7; border-color: rgba(16,185,129,0.25); }

.scout-note {
    margin-top: 14px;
    color: rgba(248,250,252,0.65);
    font-size: 0.9rem;
}

/* Content/SEO grid blocks */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature {
    background: rgba(17,24,39,0.65);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px;
}

.feature h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.feature p {
    margin: 0;
    color: rgba(248,250,252,0.75);
    line-height: 1.6;
}
