/* ===================================
   ConclaveFeed Index Page Styles
   Redesigned: Hero, Stats, Why, Pulse
   =================================== */

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.feed-hero {
    position: relative;
    padding: 6rem 0 4rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #020617;
}

@media (min-width: 1024px) {
    .feed-hero {
        padding: 10rem 0 8rem 0;
    }
}

/* Grid Background */
.feed-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Particles Canvas */
.hero-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Background Orbs */
.feed-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.feed-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.5;
    animation: orb-float 20s infinite alternate ease-in-out;
}

.feed-hero-orb-1 {
    top: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
}

.feed-hero-orb-2 {
    bottom: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    animation-delay: -5s;
}

.feed-hero-orb-3 {
    top: 50%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
    animation-delay: -10s;
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

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

/* Hero Grid */
.feed-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .feed-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }
}

/* Hero Content */
.feed-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
}

/* Badges Row */
.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.feed-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 9999px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -5px rgba(249, 115, 22, 0.15);
}

.hero-sentiment-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.4);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    backdrop-filter: blur(12px);
}

/* Title */
.feed-hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.08;
    color: white;
    margin: 0;
    letter-spacing: -0.03em;
}

@media (min-width: 640px) {
    .feed-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .feed-hero-title {
        font-size: 4.5rem;
    }
}

.hero-gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 40%, #fde047 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.3));
    animation: gradient-shimmer 4s ease-in-out infinite alternate;
}

@keyframes gradient-shimmer {
    0% {
        filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.2));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.4));
    }
}

/* Description */
.feed-hero-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
}

@media (min-width: 768px) {
    .feed-hero-desc {
        font-size: 1.15rem;
    }
}

/* Live Data Pills */
.hero-live-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(51, 65, 85, 0.4);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.hero-pill:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 4px 20px -5px rgba(249, 115, 22, 0.15);
}

.hero-pill-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pill-btc .hero-pill-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.hero-pill-mcap .hero-pill-icon {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.hero-pill-data {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-pill-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.hero-pill-value {
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Mono', monospace;
}

.hero-pill-change {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 0.375rem;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

/* CTA Row */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.5);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(100, 116, 139, 0.5);
    transform: translateY(-1px);
}

/* ─── Feature Slider ─── */
.feed-hero-visual {
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

@media (min-width: 768px) {
    .feed-hero-visual {
        min-height: 420px;
    }
}

.feed-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    animation: visual-float 6s infinite ease-in-out;
}

@keyframes visual-float {

    0%,
    100% {
        transform: translateY(0) rotateX(1deg) rotateY(-1deg);
    }

    50% {
        transform: translateY(-12px) rotateX(-1deg) rotateY(1deg);
    }
}

.hero-feature-slider {
    position: relative;
    z-index: 20;
    background: rgba(10, 15, 30, 0.75);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 2.5rem;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(249, 115, 22, 0.04);
    width: 100%;
}

.hero-feature-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

/* Progress Bar */
.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 30;
    border-radius: 2px 2px 0 0;
    overflow: hidden;
}

.slider-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    border-radius: 2px;
    animation: progress-fill 5s linear infinite;
}

@keyframes progress-fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Slider items */
.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slider-item {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
    flex-direction: column;
}

.slider-item.active {
    display: flex;
    opacity: 1;
    animation: slide-in 0.5s ease forwards;
}

@keyframes slide-in {
    from {
        transform: translateX(20px);
        opacity: 0;
    }

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

/* Feature Card Elements */
.feature-card-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 9999px;
    color: #fb923c;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.feature-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.feature-card-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.feature-card-list li {
    font-size: 0.8rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #f97316;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fb923c;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.feature-card-link:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.slider-dots {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f97316;
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

@media (max-width: 767px) {
    .feature-card-list {
        grid-template-columns: 1fr;
    }

    .feature-card-title {
        font-size: 1.35rem;
    }

    .hero-feature-slider {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
}


/* ═══════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════ */
.stats-strip-section {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}

.stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.5);
    overflow-x: auto;
    gap: 0;
}

.stats-strip-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 0;
    padding: 0.5rem;
}

.stats-strip-divider {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.2), transparent);
    flex-shrink: 0;
}

.stats-strip-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-strip-icon-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
}

.stats-strip-icon-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
}

.stats-strip-icon-indigo {
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
}

.stats-strip-icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
}

.stats-strip-data {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stats-strip-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    white-space: nowrap;
}

.stats-strip-value {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Mono', monospace;
    white-space: nowrap;
}

.stats-strip-change {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.stats-strip-sub {
    font-size: 0.6rem;
    color: #475569;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .stats-strip {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .stats-strip-item {
        flex: 1 1 45%;
    }

    .stats-strip-divider {
        display: none;
    }
}


/* ═══════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════ */
.why-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #c084fc;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.why-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .why-section-title {
        font-size: 3.25rem;
    }
}

.why-section-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Cards */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    position: relative;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}

.why-card[data-color="orange"]:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

.why-card[data-color="blue"]:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.why-card[data-color="green"]:hover {
    border-color: rgba(34, 197, 94, 0.4);
}

.why-card[data-color="purple"]:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

/* Card glow */
.why-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.why-card:hover .why-card-glow {
    opacity: 1;
}

.why-card[data-color="orange"] .why-card-glow {
    background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.15), transparent 70%);
}

.why-card[data-color="blue"] .why-card-glow {
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 70%);
}

.why-card[data-color="green"] .why-card-glow {
    background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.15), transparent 70%);
}

.why-card[data-color="purple"] .why-card-glow {
    background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.15), transparent 70%);
}

.why-card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.why-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card[data-color="orange"] .why-card-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 8px 25px -5px rgba(249, 115, 22, 0.4);
}

.why-card[data-color="blue"] .why-card-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.4);
}

.why-card[data-color="green"] .why-card-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 8px 25px -5px rgba(34, 197, 94, 0.4);
}

.why-card[data-color="purple"] .why-card-icon {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    box-shadow: 0 8px 25px -5px rgba(168, 85, 247, 0.4);
}

.why-card-counter {
    font-size: 1.75rem;
    font-weight: 900;
    font-family: 'Space Mono', monospace;
    letter-spacing: -0.02em;
}

.why-card[data-color="orange"] .why-card-counter {
    color: #fb923c;
}

.why-card[data-color="blue"] .why-card-counter {
    color: #60a5fa;
}

.why-card[data-color="green"] .why-card-counter {
    color: #4ade80;
}

.why-card[data-color="purple"] .why-card-counter {
    color: #c084fc;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.why-card-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.why-card-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}


/* ═══════════════════════════════════
   MARKET PULSE
   ═══════════════════════════════════ */
.pulse-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .pulse-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.pulse-card {
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.pulse-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px -12px rgba(0, 0, 0, 0.4);
}

.pulse-card-header {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* FNG Card */
.pulse-fng-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 300px;
}

.fng-gauge-wrapper {
    position: relative;
    width: 220px;
    margin: 0 auto 1rem;
}

.fng-svg-gauge {
    width: 100%;
    height: auto;
    display: block;
}

.fng-value-display {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.fng-big-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Space Mono', monospace;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.fng-label-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
}

.fng-sub-text {
    font-size: 0.7rem;
    color: #475569;
    margin-top: 0.375rem;
}

/* Movers cards */
.pulse-movers-card {
    min-height: 300px;
}

.pulse-movers-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pulse-skeleton {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.4);
    animation: pulse-skel-anim 1.5s infinite;
}

@keyframes pulse-skel-anim {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.pulse-skel-left {
    width: 6rem;
    height: 1rem;
    border-radius: 0.375rem;
    background: rgba(51, 65, 85, 0.5);
}

.pulse-skel-right {
    width: 3rem;
    height: 1rem;
    border-radius: 0.375rem;
    background: rgba(51, 65, 85, 0.5);
}

.pulse-header-green {
    border-bottom-color: rgba(34, 197, 94, 0.15);
}

.pulse-header-red {
    border-bottom-color: rgba(239, 68, 68, 0.15);
}


/* ═══════════════════════════════════
   NEWS SECTION
   ═══════════════════════════════════ */
.conclave-news {
    position: relative;
}

.news-ticker-container {
    height: 3rem;
}

.ticker-label {
    height: 100%;
    display: flex;
    align-items: center;
    box-shadow: 10px 0 15px -5px rgba(0, 0, 0, 0.5);
}

.ticker-content {
    animation: ticker 60s linear infinite;
    width: fit-content;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.news-card {
    min-height: 220px;
}

.news-card:hover {
    box-shadow: 0 20px 40px -20px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .ticker-label {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        font-size: 0.7rem;
    }
}


/* ═══════════════════════════════════
   ECOSYSTEM SECTION
   ═══════════════════════════════════ */
.eco-section {
    position: relative;
    overflow: hidden;
}

.eco-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.eco-bg-orb-1 {
    top: 5%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 70%);
    animation: eco-orb-drift 25s infinite alternate ease-in-out;
}

.eco-bg-orb-2 {
    bottom: 0;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    animation: eco-orb-drift 20s infinite alternate-reverse ease-in-out;
}

@keyframes eco-orb-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -30px) scale(1.08);
    }

    100% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Card System */
.eco-card {
    position: relative;
    border-radius: 1.25rem;
    text-decoration: none;
    display: flex;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s ease;
    background: transparent;
    padding: 1px;
}

.eco-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    z-index: 0;
    transition: background 0.4s ease;
}

.eco-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.eco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}

.eco-card-inner {
    position: relative;
    z-index: 2;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 1.2rem;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.eco-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.eco-card:hover .eco-card-inner::after {
    left: 120%;
}

.eco-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.eco-card:hover .eco-card-glow {
    opacity: 1;
}

.eco-card[data-accent="orange"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.1), transparent);
}

.eco-card[data-accent="blue"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.1), transparent);
}

.eco-card[data-accent="purple"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(139, 92, 246, 0.1), transparent);
}

.eco-card[data-accent="green"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(16, 185, 129, 0.1), transparent);
}

.eco-card[data-accent="fuchsia"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.25), rgba(236, 72, 153, 0.1), transparent);
}

.eco-card[data-accent="sky"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(6, 182, 212, 0.1), transparent);
}

.eco-card[data-accent="amber"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(249, 115, 22, 0.1), transparent);
}

.eco-card[data-accent="cyan"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(20, 184, 166, 0.1), transparent);
}

.eco-card[data-accent="yellow"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(245, 158, 11, 0.1), transparent);
}

.eco-card[data-accent="pink"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(244, 63, 94, 0.1), transparent);
}

.eco-card[data-accent="rose"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.25), rgba(239, 68, 68, 0.1), transparent);
}

.eco-card[data-accent="teal"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25), rgba(16, 185, 129, 0.1), transparent);
}

.eco-card[data-accent="violet"] .eco-card-glow {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(99, 102, 241, 0.1), transparent);
}

.eco-card-featured .eco-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

.eco-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.eco-card:hover .eco-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Badge chips */
.eco-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.eco-badge-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.eco-badge-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.eco-badge-purple {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.eco-badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.eco-badge-fuchsia {
    background: rgba(217, 70, 239, 0.12);
    color: #e879f9;
    border: 1px solid rgba(217, 70, 239, 0.2);
}

.eco-badge-sky {
    background: rgba(14, 165, 233, 0.12);
    color: #38bdf8;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.eco-badge-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.eco-badge-cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.eco-badge-yellow {
    background: rgba(234, 179, 8, 0.12);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.eco-badge-pink {
    background: rgba(236, 72, 153, 0.12);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.eco-badge-rose {
    background: rgba(244, 63, 94, 0.12);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.eco-badge-teal {
    background: rgba(20, 184, 166, 0.12);
    color: #2dd4bf;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.eco-badge-violet {
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.eco-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.eco-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    color: #94a3b8;
    white-space: nowrap;
}

.eco-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

@media (max-width: 1023px) {
    .eco-category .grid.lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .eco-card-inner {
        padding: 1.25rem;
    }
}