/* ═══════════════════════════════════════════════════════════════
   LA-PRO Opportunity Radar — Stylesheet
   Version 1.0.0
   ═══════════════════════════════════════════════════════════════ */

/* ─── FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── VARIABLES ──────────────────────────────────────────────── */
:root {
    --lapro-bg: #f8f6f1;
    --lapro-card-bg: #ffffff;
    --lapro-ink: #1a1916;
    --lapro-muted: #6b6760;
    --lapro-border: rgba(26, 25, 22, 0.1);
    --lapro-accent: #1a3c6e;
    /* LA-PRO navy */
    --lapro-opp: #1d6e4e;
    /* opportunity green */
    --lapro-opp-bg: #e8f5ef;
    --lapro-risk: #8b2615;
    /* risk red */
    --lapro-risk-bg: #fdf0ed;
    --lapro-struct: #5a3d00;
    /* structural amber */
    --lapro-struct-bg: #fef8e8;
    --lapro-featured: #1a3c6e;
    --lapro-radius: 12px;
    --lapro-font-display: 'Syne', sans-serif;
    --lapro-font-body: 'DM Sans', sans-serif;
    --lapro-shadow: 0 2px 16px rgba(26, 25, 22, 0.07);
    --lapro-shadow-hover: 0 8px 32px rgba(26, 25, 22, 0.13);
}

/* ─── SECTION WRAPPER ────────────────────────────────────────── */
/* .lapro-radar-section {
    max-width: 1160px;
    margin: 0 auto 56px;
    padding: 0 20px;
    font-family: var(--lapro-font-body);
} */

/* ─── HEADER ─────────────────────────────────────────────────── */
.lapro-radar-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--lapro-ink);
}

.lapro-radar-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lapro-accent);
    margin-bottom: 8px;
}

.lapro-radar-pulse {
    width: 7px;
    height: 7px;
    background: var(--lapro-opp);
    border-radius: 50%;
    display: inline-block;
    animation: lapro-pulse 2s ease-in-out infinite;
}

@keyframes lapro-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.lapro-radar-title {
    font-family: var(--lapro-font-display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--lapro-ink);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
}

h1.lapro-radar-title {
    font-size: clamp(24px, 3.5vw, 40px);
}

.lapro-radar-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--lapro-muted);
    margin: 0;
}

.lapro-radar-archive-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--lapro-accent);
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1.5px solid var(--lapro-accent);
    border-radius: 6px;
    transition: all 0.15s;
}

.lapro-radar-archive-link:hover {
    background: var(--lapro-accent);
    color: #fff;
}

/* ─── FILTERS ─────────────────────────────────────────────────── */
.lapro-radar-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.lapro-filter-group {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 10px;
    flex-wrap: wrap;
}

.lapro-filter-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--lapro-muted);
    min-width: 80px;
}

.lapro-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lapro-chip {
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--lapro-border);
    color: var(--lapro-muted);
    background: transparent;
    transition: all 0.15s;
    white-space: nowrap;
    font-family: var(--lapro-font-body);
    cursor: pointer;
}

.lapro-chip:hover,
.lapro-chip.active {
    border-color: var(--lapro-ink);
    color: var(--lapro-ink);
    background: rgba(26, 25, 22, 0.05);
}

/* 
.lapro-chip.opportunity.active {
    border-color: var(--lapro-opp);
    color: var(--lapro-opp);
    background: var(--lapro-opp-bg);
}

.lapro-chip.risk.active {
    border-color: var(--lapro-risk);
    color: var(--lapro-risk);
    background: var(--lapro-risk-bg);
}

.lapro-chip.structural.active {
    border-color: var(--lapro-struct);
    color: var(--lapro-struct);
    background: var(--lapro-struct-bg);
} */

/* ─── GRID ───────────────────────────────────────────────────── */
.lapro-radar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

@media (max-width: 900px) {
    .lapro-radar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .lapro-radar-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── CARD ───────────────────────────────────────────────────── */
.lapro-card {
    background: var(--lapro-card-bg);
    border: 1px solid var(--lapro-border);
    border-radius: var(--lapro-radius);
    padding: 22px 20px 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--lapro-shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    animation: lapro-fade-up 0.45s ease both;
    overflow: hidden;
    height: 100%;
}

@keyframes lapro-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lapro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lapro-border);
    border-radius: var(--lapro-radius) var(--lapro-radius) 0 0;
}

.lapro-card--opportunity::before {
    background: var(--lapro-opp);
}

.lapro-card--risk::before {
    background: var(--lapro-risk);
}

.lapro-card--structural::before {
    background: #e6a817;
}

.lapro-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lapro-shadow-hover);
    border-color: rgba(26, 25, 22, 0.18);
}

/* Featured card */
.lapro-card--featured {
    border-color: var(--lapro-accent);
    background: #f4f7fc;
}

.lapro-card--featured::before {
    background: var(--lapro-accent);
}

.lapro-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--lapro-accent);
    color: #fff;
    padding: 3px 9px;
    border-radius: 10px;
}

/* ─── CARD TOP ───────────────────────────────────────────────── */
.lapro-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* ─── BADGE ──────────────────────────────────────────────────── */
.lapro-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.lapro-badge-icon {
    font-size: 11px;
}

.lapro-badge--opportunity {
    background: var(--lapro-opp-bg);
    color: var(--lapro-opp);
}

.lapro-badge--risk {
    background: var(--lapro-risk-bg);
    color: var(--lapro-risk);
}

.lapro-badge--structural {
    background: var(--lapro-struct-bg);
    color: var(--lapro-struct);
}

/* ─── WEEK LABEL ─────────────────────────────────────────────── */
.lapro-week-label {
    font-size: 11px;
    color: var(--lapro-muted);
    font-weight: 400;
}

/* ─── CARD TITLE ─────────────────────────────────────────────── */
.lapro-card-title {
    /* font-family: var(--lapro-font-display); */
    font-size: 16px;
    font-weight: 600;
    /* color: var(--lapro-ink); */
    line-height: 1.35;
    margin: 0;
}

/* ─── SECTOR ─────────────────────────────────────────────────── */
.lapro-card-sector {
    font-size: 12px;
    color: var(--lapro-muted);
    font-weight: 400;
    margin-top: -6px;
    border-left: 2px solid var(--lapro-border);
    padding-left: 8px;
}

/* ─── CONTENT BLOCKS ─────────────────────────────────────────── */
.lapro-card-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lapro-block-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lapro-muted);
}

.lapro-block-text {
    font-size: 13px;
    font-weight: 300;
    color: var(--lapro-ink);
    line-height: 1.6;
    margin: 0;
}

.lapro-card-block--highlight {
    background: rgb(241 246 253);
    border-radius: 8px;
    padding: 10px 12px;
    border-left: none;
}

/* ─── WHO TAGS ───────────────────────────────────────────────── */
.lapro-card-who {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lapro-who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.lapro-who-tag {
    font-size: 11px;
    padding: 3px 9px;
    background: #f0ede8;
    border-radius: 10px;
    color: var(--lapro-ink);
    font-weight: 400;
}

/* ─── CARD FOOTER ────────────────────────────────────────────── */
.lapro-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--lapro-border);
    padding-top: 12px;
    margin-top: auto;
}

.lapro-confidence {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
}

.lapro-conf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lapro-muted);
}

.lapro-confidence.conf-high .lapro-conf-dot {
    background: var(--lapro-opp);
}

.lapro-confidence.conf-high {
    color: var(--lapro-opp);
}

.lapro-confidence.conf-medium .lapro-conf-dot {
    background: #e6a817;
}

.lapro-confidence.conf-medium {
    color: var(--lapro-struct);
}

.lapro-confidence.conf-low .lapro-conf-dot {
    background: var(--lapro-risk);
}

.lapro-confidence.conf-low {
    color: var(--lapro-risk);
}

.lapro-card-date {
    font-size: 11px;
    color: var(--lapro-muted);
    font-weight: 300;
}

/* ─── SECTION FOOTER ─────────────────────────────────────────── */
.lapro-radar-footer {
    text-align: center;
    margin-top: 32px;
}

.lapro-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--lapro-ink);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--lapro-font-body);
    transition: background 0.15s;
}

.lapro-more-btn:hover {
    background: #333;
    color: #fff;
}

/* ─── EMPTY STATE ────────────────────────────────────────────── */
.lapro-radar-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--lapro-muted);
    font-size: 14px;
}

.lapro-radar-empty a {
    color: var(--lapro-accent);
}

/* ─── PAGINATION ─────────────────────────────────────────────── */
.lapro-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.lapro-page-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--lapro-border);
    color: var(--lapro-muted);
    transition: all 0.15s;
}

.lapro-page-btn:hover,
.lapro-page-btn.active {
    background: var(--lapro-accent);
    border-color: var(--lapro-accent);
    color: #fff;
}

/* ─── ARCHIVE SECTION ────────────────────────────────────────── */
.lapro-archive-section .lapro-radar-header {
    border-bottom-color: var(--lapro-accent);
}

/* Radar CSS */

/* Outer light blue ring */
.radar-panel {
    width: 350px;
    height: 350px;
    background-color: #e2f0f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: scale(.6);
}

/* Inner dark green screen */
.radar-screen {
    width: 320px;
    height: 320px;
    background-color: #d7efe7;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

/* Background Rings */
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #95d0bf;
    border-radius: 50%;
    pointer-events: none;
}

.ring-inner {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.05);
}

.ring-middle {
    width: 180px;
    height: 180px;
}

.ring-outer {
    width: 260px;
    height: 260px;
}

/* Rotating Sweep Line */
.sweep-line {
    position: absolute;
    width: 50%;
    height: 2px;
    /* Line width */
    top: 50%;
    left: 50%;
    transform-origin: left center;
    /* Center se ghumane ke liye */
    background: linear-gradient(to right, rgba(114, 241, 210, 0) 0%, #2c5d4f 100%);
    box-shadow: 0 -2px 10px rgba(114, 241, 210, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* Fading Glow Trail (Line ke peeche ka saya) */
.sweep-trail {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    left: 50%;
    transform-origin: bottom left;
    background: conic-gradient(from 90deg at bottom left, rgba(114, 241, 210, 0.25) 0deg, transparent 90deg);
    z-index: 2;
    pointer-events: none;
}

/* Dots Style (Normal State - Halka dikhega) */
.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #5ba38f;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.25;
    /* Halka visible state */
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 1.2s ease, transform 1.2s ease, box-shadow 1.2s ease;
}

/* Active State (Jab line touch karegi tab poora glow hoga) */
.dot.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
    background-color: #5ba38f;
    box-shadow: 0 0 12px #72f1d2, 0 0 25px #72f1d2;
    transition: opacity 0s, transform 0s, box-shadow 0s;
    /* Instant activation */
}

.radarIcons {
    position: absolute;
    height: 350px;
    width: 350px;
    transform: scale(.6);
    z-index: 9;
}

.radarIcons img {
    width: 80px;
    height: max-content;
    position: absolute;
}

.radarIcons img.img01 {
    top: -30px;
    left: 0px;
}

.radarIcons img.img02 {
    bottom: 0px;
    left: -40px;
}

.radarIcons img.img03 {
    top: 0px;
    right: -30px;
}

.radarIcons img.img04 {
    bottom: -30px;
    right: 0px;
}

.radar-hero {
    background: #f2f7fe;
    padding: 40px 0px;
}


/* ─── RESPONSIVE TWEAKS ──────────────────────────────────────── */
@media (max-width: 640px) {
    .lapro-radar-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lapro-filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .lapro-filter-label {
        min-width: unset;
    }

    .lapro-card {
        padding: 18px 16px 14px;
    }
}


/*  */

/* .radar-hero {
    margin-top: 40px;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef6ff 100%);
    padding: 60px 0 36px;
} */

.radar-container {
    max-width: 1180px;
    margin: auto;
    padding: 0 24px;
}

.radar-label {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #234;
}

.radar-label span {
    display: inline-block;

    width: 10px;
    height: 10px;
    background: #1a8a60;
    border-radius: 50%;
    margin-right: 10px;
}

.radar-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr .9fr;
    gap: 50px;
    align-items: center;
}

h1 {
    font-size: 56px;
    line-height: 1.05;
    margin: 0 0 14px;
    font-weight: 600;
}

h1 span {
    color: #007bff;
}

h2 {
    font-size: 22px;
    margin: 0 0 22px;
    font-weight: 800;
}

h3 {
    font-size: 18px;
}

.radar-intro {

    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
    margin-bottom: 28px;
}

.signal-heading {
    font-weight: 700;
    margin-bottom: 20px;
}

.signal-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.signal-item {
    display: flex;
    gap: 14px;
    padding-right: 20px;
    border-right: 1px solid #dce3ec;
}

.signal-item:last-child {
    border-right: none;
}

.signal-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.signal-icon img {
    width: 20px;
    height: 20px;
}

.opportunity .signal-icon {
    background: #eaf8f1;
    border: 2px solid #0c8a52;
}

.shift .signal-icon {
    background: #fff7df;
    border: 2px solid #f0a000;
}

.risk .signal-icon {
    background: #fff0f0;
    border: 2px solid #ff3b3b;
}

.signal-item h3 {
    margin: 0 0 8px;
}

.signal-item p {
    margin: 0;
    line-height: 1.5;
}

.radar-tabs-card {
    margin-top: 34px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(14, 42, 80, .08);
    overflow: hidden;
}

.radar-tabs {
    display: flex;
    border-bottom: 1px solid #e5ebf2;
}

.radar-tabs a {
    background: none !important;
    border-radius: 0px;
    border: none;
    padding: 15px 28px;
    font-size: 16px;
    cursor: pointer;
}

.radar-tabs a.active {
    color: #007bff;
    font-weight: 600;
    border-bottom: 3px solid #007bff;
}

.radar-meta {
    display: flex;
    justify-content: space-between;
    padding: 20px 28px;
}

/*  */

.lapro-card--structural::before {
    background: #f3a129;
}

.lapro-badge--structural {
    background: #f3a12920;
    color: #f3a129;
}

.lapro-badge--structural .lapro-badge-icon {
    font-size: 0px;
}

.lapro-badge--structural .lapro-badge-icon::before {
    content: "";
    height: 14px;
    width: 14px;
    background: url(https://lapro.in/wp-content/uploads/2026/05/repeat.png) no-repeat center;
    display: block;
    background-size: contain;
}

.lapro-card--risk::before {
    background: #ff3b3b;
}

.lapro-badge--risk {
    background: #ff3b3b20;
    color: #ff3b3b;
}

.lapro-badge--risk .lapro-badge-icon {
    font-size: 0px;
}

.lapro-badge--risk .lapro-badge-icon::before {
    content: "";
    height: 14px;
    width: 14px;
    background: url(https://lapro.in/wp-content/uploads/2026/05/warning.png) no-repeat center;
    display: block;
    background-size: contain;
}

.lapro-card--opportunity::before {
    background: #0c8a52;
}

.lapro-badge--opportunity {
    background: #0c8a5220;
    color: #0c8a52;
}

.lapro-badge--opportunity .lapro-badge-icon {
    font-size: 0px;
}

.lapro-badge--opportunity .lapro-badge-icon::before {
    content: "";
    height: 14px;
    width: 14px;
    background: url(https://lapro.in/wp-content/uploads/2026/05/grow-up.png) no-repeat center;
    display: block;
    background-size: contain;
}

main.site-main:has(.radar-hero) {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}


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

    .radar-visual {
        display: none
    }

    .signal-guide {
        grid-template-columns: 1fr
    }

    .signal-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 18px
    }

    .radar-tabs {
        overflow: auto;
        white-space: nowrap
    }

    .radar-meta {
        flex-direction: column;
        gap: 12px
    }

    h1 {
        font-size: 44px
    }

    h2 {
        font-size: 28px
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }

    h1 span {
        display: block;
    }

    h2 {
        font-size: 22px;
    }

    .radarIcons {
        transform: scale(.8);
    }

    .radar-panel {
        transform: scale(.85);
    }

    .radarIcons img {
        width: 60px;
    }

    .radarIcons img.img04 {
        bottom: 20px;
    }

    .radar-tabs a {
        padding: 15px 10px;
        font-size: 14px;
    }

    .radar-tabs {
        display: flex;
        border-bottom: 1px solid #e5ebf2;
        flex-wrap: nowrap;
        overflow-x: scroll !important;
        width: 100%;
    }

    .radar-meta {
        flex-direction: column;
        gap: 12px;
    }

    .lapro-radar-grid {
        grid-template-columns: 1fr;
        display: flex;
        width: 100%;
        overflow-x: auto;
    }

    .lapro-card {
        padding: 18px 16px 14px;
        width: 300px;
        min-width: 300px;
    }

    .radar-meta {
        padding: 15px;
    }
}