/* ============================================================
   IDEAS PAGE — REVAMP STYLES
   Builds on top of ideas-theme.css with new sections.
   ============================================================ */

/* ============================================================
   1. ANIMATED HERO (replaces static image)
   ============================================================ */
.ideas-hero .service-hero-bg img {
    display: none !important;
}
.ideas-hero {
    background:
        radial-gradient(ellipse at 20% 25%, rgba(80, 150, 255, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(167, 139, 255, 0.30) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 100, 200, 0.20) 0%, transparent 60%),
        linear-gradient(180deg, #050a20 0%, #0a1530 50%, #060d24 100%);
    overflow: hidden;
}
.ideas-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.ideas-hero-bulbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.ideas-hero-bulb {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(120,200,255,0.4) 40%, transparent 70%);
    box-shadow: 0 0 40px rgba(120, 200, 255, 0.6);
    animation: ideaBulbFloat 14s ease-in-out infinite;
    opacity: 0.7;
}
.ideas-hero-bulb::after {
    content: '💡';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    filter: drop-shadow(0 0 6px rgba(255, 200, 100, 0.6));
}
.ideas-hero-bulb:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.ideas-hero-bulb:nth-child(2) { top: 60%; left: 18%; animation-delay: -3s; width: 40px; height: 40px; }
.ideas-hero-bulb:nth-child(3) { top: 25%; right: 18%; animation-delay: -6s; width: 50px; height: 50px; }
.ideas-hero-bulb:nth-child(4) { top: 70%; right: 12%; animation-delay: -9s; }
.ideas-hero-bulb:nth-child(5) { top: 45%; left: 50%; animation-delay: -2s; width: 35px; height: 35px; }
.ideas-hero-bulb:nth-child(6) { top: 80%; left: 65%; animation-delay: -7s; width: 45px; height: 45px; }
@keyframes ideaBulbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25%      { transform: translate(20px, -25px) scale(1.05); opacity: 1; }
    50%      { transform: translate(-15px, -45px) scale(0.95); opacity: 0.8; }
    75%      { transform: translate(-25px, -15px) scale(1.02); opacity: 1; }
}

.ideas-hero .service-hero-content {
    z-index: 5;
}
.ideas-hero .service-hero-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, #6cf 40%, #a78bff 70%, #ff8ad4 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ideaTitleShimmer 6s ease-in-out infinite;
}
@keyframes ideaTitleShimmer {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}

/* CTA chips inside hero */
.ideas-hero-ctas {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.ideas-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}
.ideas-hero-cta--primary {
    background: linear-gradient(135deg, #4080ff, #7050ff);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(80, 150, 255, 0.4);
}
.ideas-hero-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(80, 150, 255, 0.55);
}
.ideas-hero-cta--ghost {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(120, 200, 255, 0.4);
    color: #cfe6ff;
    backdrop-filter: blur(10px);
}
.ideas-hero-cta--ghost:hover {
    background: rgba(120, 200, 255, 0.15);
    border-color: rgba(120, 200, 255, 0.7);
}

/* ============================================================
   2. STATS COUNTER STRIP
   ============================================================ */
.ideas-stats-strip {
    padding: 50px 0;
    background: linear-gradient(180deg, #060d24 0%, #08122a 100%);
    border-bottom: 1px solid rgba(120, 200, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.ideas-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(120, 200, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 200, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}
.ideas-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.ideas-stat {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(165deg, rgba(80, 150, 255, 0.08), rgba(20, 40, 90, 0.25));
    border: 1px solid rgba(120, 200, 255, 0.18);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.ideas-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(120, 200, 255, 0.45);
    box-shadow: 0 12px 30px rgba(80, 150, 255, 0.25);
}
.ideas-stat__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 204, 255, 0.18), rgba(167, 139, 255, 0.12));
    border: 1px solid rgba(120, 200, 255, 0.3);
    border-radius: 12px;
    color: #6cf;
    font-size: 20px;
}
.ideas-stat:nth-child(2) .ideas-stat__icon { color: #a78bff; }
.ideas-stat:nth-child(3) .ideas-stat__icon { color: #ff8ad4; }
.ideas-stat:nth-child(4) .ideas-stat__icon { color: #4fffb0; }
.ideas-stat__value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #6cf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ideas-stat:nth-child(2) .ideas-stat__value { background: linear-gradient(135deg, #ffffff, #a78bff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ideas-stat:nth-child(3) .ideas-stat__value { background: linear-gradient(135deg, #ffffff, #ff8ad4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ideas-stat:nth-child(4) .ideas-stat__value { background: linear-gradient(135deg, #ffffff, #4fffb0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.ideas-stat__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(200, 220, 255, 0.7);
    margin-top: 8px;
    font-weight: 500;
}
.ideas-stat__delta {
    font-size: 11px;
    color: #4fffb0;
    margin-top: 6px;
    font-weight: 600;
}

/* ============================================================
   3. IDEA FLOW TIMELINE
   ============================================================ */
.ideas-flow {
    padding: 90px 0;
    background: linear-gradient(180deg, #08122a 0%, #0c1a3d 50%, #08122a 100%);
    position: relative;
    overflow: hidden;
}
.ideas-flow__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.ideas-flow__header {
    text-align: center;
    margin-bottom: 60px;
}
.ideas-flow__badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(167, 139, 255, 0.15);
    border: 1px solid rgba(167, 139, 255, 0.4);
    color: #d4c4ff;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ideas-flow__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff, #cfe6ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ideas-flow__subtitle {
    color: rgba(200, 220, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ideas-flow__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}
.ideas-flow__steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, #6cf 0%, #a78bff 35%, #ff8ad4 70%, #4fffb0 100%);
    opacity: 0.4;
    z-index: 0;
}
.ideas-flow__step {
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.ideas-flow__step:hover { transform: translateY(-6px); }
.ideas-flow__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(80, 150, 255, 0.18), rgba(20, 40, 90, 0.5));
    border: 1px solid rgba(120, 200, 255, 0.35);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #6cf;
    box-shadow: 0 10px 30px rgba(80, 150, 255, 0.25);
    transition: all 0.3s ease;
}
.ideas-flow__step:nth-child(2) .ideas-flow__icon { color: #a78bff; box-shadow: 0 10px 30px rgba(167, 139, 255, 0.25); border-color: rgba(167, 139, 255, 0.4); }
.ideas-flow__step:nth-child(3) .ideas-flow__icon { color: #ff8ad4; box-shadow: 0 10px 30px rgba(255, 138, 212, 0.25); border-color: rgba(255, 138, 212, 0.4); }
.ideas-flow__step:nth-child(4) .ideas-flow__icon { color: #ffc857; box-shadow: 0 10px 30px rgba(255, 200, 87, 0.25); border-color: rgba(255, 200, 87, 0.4); }
.ideas-flow__step:nth-child(5) .ideas-flow__icon { color: #4fffb0; box-shadow: 0 10px 30px rgba(79, 255, 176, 0.25); border-color: rgba(79, 255, 176, 0.4); }
.ideas-flow__step:hover .ideas-flow__icon {
    transform: scale(1.08);
    box-shadow: 0 14px 36px rgba(120, 200, 255, 0.4);
}
.ideas-flow__step h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.ideas-flow__step p {
    color: rgba(200, 220, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.5;
}
.ideas-flow__num {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #08122a;
    border: 1px solid rgba(120, 200, 255, 0.5);
    color: #6cf;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ============================================================
   4. FEATURED IDEA SPOTLIGHT
   ============================================================ */
.ideas-spotlight {
    padding: 80px 0;
    background: linear-gradient(180deg, #08122a 0%, #060d24 100%);
    position: relative;
    overflow: hidden;
}
.ideas-spotlight::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 138, 212, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.ideas-spotlight__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.ideas-spotlight__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.ideas-spotlight__title {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ideas-spotlight__title::before {
    content: '✨';
    font-size: 1.5rem;
    filter: drop-shadow(0 0 12px rgba(255, 200, 87, 0.7));
}
.ideas-spotlight__nav {
    display: flex;
    gap: 8px;
}
.ideas-spotlight__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(80, 150, 255, 0.12);
    border: 1px solid rgba(120, 200, 255, 0.3);
    color: #cfe6ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.ideas-spotlight__nav-btn:hover {
    background: rgba(80, 150, 255, 0.25);
    border-color: rgba(120, 200, 255, 0.6);
}

.ideas-spotlight__viewport {
    overflow: hidden;
    border-radius: 20px;
}
.ideas-spotlight__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.2,.9,.3,1);
}
.ideas-spotlight__card {
    flex: 0 0 100%;
    padding: 36px;
    background: linear-gradient(165deg, rgba(80, 150, 255, 0.10), rgba(20, 40, 90, 0.4));
    border: 1px solid rgba(120, 200, 255, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
.ideas-spotlight__card-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.ideas-spotlight__tag {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.ideas-spotlight__tag--cat { background: rgba(108, 204, 255, 0.2); border: 1px solid rgba(108, 204, 255, 0.4); color: #6cf; }
.ideas-spotlight__tag--featured { background: rgba(255, 200, 87, 0.18); border: 1px solid rgba(255, 200, 87, 0.45); color: #ffc857; }
.ideas-spotlight__tag--status { background: rgba(79, 255, 176, 0.15); border: 1px solid rgba(79, 255, 176, 0.4); color: #4fffb0; }

.ideas-spotlight__card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.ideas-spotlight__card p {
    color: rgba(200, 220, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.ideas-spotlight__author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(200, 220, 255, 0.7);
    font-size: 0.85rem;
}
.ideas-spotlight__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4080ff, #7050ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.ideas-spotlight__votes {
    text-align: center;
    padding: 20px 28px;
    background: linear-gradient(165deg, rgba(255, 138, 212, 0.15), rgba(167, 139, 255, 0.1));
    border: 1px solid rgba(255, 138, 212, 0.3);
    border-radius: 16px;
}
.ideas-spotlight__votes-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8ad4, #a78bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.ideas-spotlight__votes-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(200, 220, 255, 0.7);
    margin-top: 4px;
}

.ideas-spotlight__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.ideas-spotlight__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.25);
    cursor: pointer;
    transition: all 0.2s;
}
.ideas-spotlight__dot.active {
    background: linear-gradient(135deg, #6cf, #a78bff);
    width: 28px;
    border-radius: 4px;
}

/* ============================================================
   5. LIVE LEADERBOARD TICKER
   ============================================================ */
.ideas-leaderboard {
    padding: 70px 0;
    background: linear-gradient(180deg, #060d24 0%, #08122a 100%);
}
.ideas-leaderboard__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.ideas-leaderboard__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.ideas-leaderboard__title {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ideas-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(79, 255, 176, 0.15);
    border: 1px solid rgba(79, 255, 176, 0.45);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4fffb0;
}
.ideas-live-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4fffb0;
    box-shadow: 0 0 8px #4fffb0;
    animation: ideaPulse 1.5s ease-in-out infinite;
}
@keyframes ideaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.8); }
}

.ideas-leaderboard__list {
    display: grid;
    gap: 10px;
}
.ideas-leader-row {
    display: grid;
    grid-template-columns: 50px 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(80, 150, 255, 0.06), rgba(20, 40, 90, 0.3));
    border: 1px solid rgba(120, 200, 255, 0.15);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.ideas-leader-row:hover {
    transform: translateX(6px);
    border-color: rgba(120, 200, 255, 0.45);
    background: linear-gradient(135deg, rgba(80, 150, 255, 0.12), rgba(20, 40, 90, 0.4));
}
.ideas-leader-rank {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: rgba(200, 220, 255, 0.5);
}
.ideas-leader-row:nth-child(1) .ideas-leader-rank { color: #ffc857; text-shadow: 0 0 12px rgba(255, 200, 87, 0.6); }
.ideas-leader-row:nth-child(2) .ideas-leader-rank { color: #cfe6ff; }
.ideas-leader-row:nth-child(3) .ideas-leader-rank { color: #ff8ad4; }

.ideas-leader-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.ideas-leader-info h5 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ideas-leader-info span {
    color: rgba(200, 220, 255, 0.55);
    font-size: 0.78rem;
}
.ideas-leader-cat {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(108, 204, 255, 0.15);
    border: 1px solid rgba(108, 204, 255, 0.35);
    color: #6cf;
}
.ideas-leader-cat--cloud   { background: rgba(167, 139, 255, 0.15); border-color: rgba(167, 139, 255, 0.35); color: #a78bff; }
.ideas-leader-cat--banking { background: rgba(255, 138, 212, 0.15); border-color: rgba(255, 138, 212, 0.35); color: #ff8ad4; }
.ideas-leader-cat--devops  { background: rgba(79, 255, 176, 0.13); border-color: rgba(79, 255, 176, 0.35); color: #4fffb0; }
.ideas-leader-cat--auto    { background: rgba(255, 200, 87, 0.13); border-color: rgba(255, 200, 87, 0.4); color: #ffc857; }

.ideas-leader-votes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255, 138, 212, 0.18), rgba(167, 139, 255, 0.12));
    border: 1px solid rgba(255, 138, 212, 0.35);
    border-radius: 100px;
    color: #ff8ad4;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
}
.ideas-leader-votes::before {
    content: '▲';
    font-size: 10px;
}

/* ============================================================
   6. ACTIVITY FEED TICKER
   ============================================================ */
.ideas-activity {
    padding: 0;
    background: linear-gradient(180deg, #08122a 0%, #060d24 100%);
    border-top: 1px solid rgba(120, 200, 255, 0.12);
    border-bottom: 1px solid rgba(120, 200, 255, 0.12);
    overflow: hidden;
}
.ideas-activity__inner {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 24px;
}
.ideas-activity__label {
    flex-shrink: 0;
    padding-left: 24px;
    color: #4fffb0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ideas-activity__label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4fffb0;
    box-shadow: 0 0 10px #4fffb0;
    animation: ideaPulse 1.4s ease-in-out infinite;
}
.ideas-activity__viewport {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.ideas-activity__track {
    display: flex;
    gap: 36px;
    animation: ideaActivityScroll 50s linear infinite;
    width: max-content;
}
.ideas-activity__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(200, 220, 255, 0.85);
    font-size: 13px;
    white-space: nowrap;
}
.ideas-activity__item strong { color: #ffffff; font-weight: 600; }
.ideas-activity__item .verb-vote   { color: #ff8ad4; }
.ideas-activity__item .verb-submit { color: #6cf; }
.ideas-activity__item .verb-comment{ color: #a78bff; }
.ideas-activity__item .verb-ship   { color: #4fffb0; }
.ideas-activity__sep {
    color: rgba(120, 200, 255, 0.3);
    font-size: 8px;
}
@keyframes ideaActivityScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ideas-activity:hover .ideas-activity__track {
    animation-play-state: paused;
}

/* ============================================================
   7. TOP CONTRIBUTORS WALL
   ============================================================ */
.ideas-contributors {
    padding: 80px 0;
    background: linear-gradient(180deg, #060d24 0%, #08122a 100%);
    position: relative;
}
.ideas-contributors__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.ideas-contributors__header {
    text-align: center;
    margin-bottom: 40px;
}
.ideas-contributors__title {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}
.ideas-contributors__sub {
    color: rgba(200, 220, 255, 0.65);
    font-size: 0.95rem;
}

.ideas-contributors__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.ideas-contrib-card {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(165deg, rgba(80, 150, 255, 0.08), rgba(20, 40, 90, 0.3));
    border: 1px solid rgba(120, 200, 255, 0.18);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}
.ideas-contrib-card:hover {
    transform: translateY(-6px);
    border-color: rgba(120, 200, 255, 0.5);
    box-shadow: 0 14px 36px rgba(80, 150, 255, 0.3);
}
.ideas-contrib-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    background: linear-gradient(135deg, #4080ff, #7050ff);
    box-shadow: 0 0 24px rgba(80, 150, 255, 0.4);
    border: 2px solid rgba(120, 200, 255, 0.4);
}
.ideas-contrib-card:nth-child(5n+2) .ideas-contrib-card__avatar { background: linear-gradient(135deg, #a78bff, #ff8ad4); box-shadow: 0 0 24px rgba(167, 139, 255, 0.4); }
.ideas-contrib-card:nth-child(5n+3) .ideas-contrib-card__avatar { background: linear-gradient(135deg, #ff8ad4, #ffc857); box-shadow: 0 0 24px rgba(255, 138, 212, 0.4); }
.ideas-contrib-card:nth-child(5n+4) .ideas-contrib-card__avatar { background: linear-gradient(135deg, #4fffb0, #6cf); box-shadow: 0 0 24px rgba(79, 255, 176, 0.4); }
.ideas-contrib-card:nth-child(5n+5) .ideas-contrib-card__avatar { background: linear-gradient(135deg, #ffc857, #ff8ad4); box-shadow: 0 0 24px rgba(255, 200, 87, 0.4); }

.ideas-contrib-card__name {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.ideas-contrib-card__role {
    color: rgba(200, 220, 255, 0.55);
    font-size: 0.75rem;
    margin-bottom: 12px;
}
.ideas-contrib-card__stats {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 0.7rem;
    color: rgba(200, 220, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ideas-contrib-card__stats b {
    display: block;
    color: #6cf;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1;
}
.ideas-contrib-card__crown {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    filter: drop-shadow(0 0 8px rgba(255, 200, 87, 0.7));
}

/* ============================================================
   8. AI SUGGESTION PROMPTS
   ============================================================ */
.ideas-ai-prompt {
    padding: 70px 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(167, 139, 255, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, #08122a 0%, #0c1a3d 100%);
    position: relative;
    overflow: hidden;
}
.ideas-ai-prompt__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.ideas-ai-prompt__card {
    background: linear-gradient(165deg, rgba(167, 139, 255, 0.10), rgba(20, 40, 90, 0.4));
    border: 1px solid rgba(167, 139, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(80, 50, 200, 0.3);
}
.ideas-ai-prompt__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.ideas-ai-prompt__bot {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6cf, #a78bff, #ff8ad4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(167, 139, 255, 0.45);
    flex-shrink: 0;
    animation: ideaAIPulse 3s ease-in-out infinite;
}
@keyframes ideaAIPulse {
    0%,100% { transform: scale(1); box-shadow: 0 10px 30px rgba(167, 139, 255, 0.45); }
    50%     { transform: scale(1.06); box-shadow: 0 14px 40px rgba(167, 139, 255, 0.7); }
}
.ideas-ai-prompt__bot-label {
    font-size: 10px;
    color: rgba(200, 220, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.ideas-ai-prompt__msg {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
}
.ideas-ai-prompt__msg em {
    font-style: normal;
    background: linear-gradient(135deg, #6cf, #a78bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ideas-ai-prompt__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ideas-ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(108, 204, 255, 0.10);
    border: 1px solid rgba(120, 200, 255, 0.3);
    color: rgba(220, 235, 255, 0.95);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}
.ideas-ai-chip::before {
    content: '✦';
    color: #6cf;
    font-size: 10px;
}
.ideas-ai-chip:hover {
    background: linear-gradient(135deg, rgba(108, 204, 255, 0.2), rgba(167, 139, 255, 0.18));
    border-color: rgba(167, 139, 255, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(80, 150, 255, 0.25);
}

/* ============================================================
   9. FLOATING ACTION BUTTON
   ============================================================ */
.ideas-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.ideas-fab__main {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #6cf, #a78bff, #ff8ad4);
    background-size: 200% 200%;
    color: #ffffff;
    border: 0;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(120, 80, 255, 0.5);
    animation: ideaFabGradient 6s ease infinite;
    transition: transform 0.3s;
}
@keyframes ideaFabGradient {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}
.ideas-fab__main:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 50px rgba(120, 80, 255, 0.65);
}
.ideas-fab__main::before {
    content: '✨';
    font-size: 16px;
}

.ideas-fab__panel {
    background: linear-gradient(165deg, rgba(20, 30, 65, 0.98), rgba(12, 20, 45, 0.98));
    border: 1px solid rgba(120, 200, 255, 0.3);
    border-radius: 18px;
    padding: 18px;
    width: 320px;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    transform: translateY(8px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(.2,.9,.3,1);
    transform-origin: bottom right;
}
.ideas-fab.open .ideas-fab__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}
.ideas-fab__panel-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ideas-fab__panel-title::before {
    content: '✨';
}
.ideas-fab__panel-sub {
    color: rgba(200, 220, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 14px;
}
.ideas-fab__panel textarea {
    width: 100%;
    background: rgba(8, 18, 42, 0.6);
    border: 1px solid rgba(120, 200, 255, 0.25);
    border-radius: 10px;
    color: #ffffff;
    padding: 10px 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    resize: none;
    outline: none;
    transition: border 0.2s;
    box-sizing: border-box;
}
.ideas-fab__panel textarea:focus {
    border-color: rgba(120, 200, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(80, 150, 255, 0.15);
}
.ideas-fab__panel textarea::placeholder {
    color: rgba(200, 220, 255, 0.4);
}
.ideas-fab__panel-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    gap: 10px;
}
.ideas-fab__btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}
.ideas-fab__btn--cancel {
    background: rgba(255,255,255,0.06);
    color: #cfe6ff;
    border: 1px solid rgba(120,200,255,0.2);
}
.ideas-fab__btn--send {
    background: linear-gradient(135deg, #4080ff, #7050ff);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(80, 150, 255, 0.4);
}
.ideas-fab__btn--send:hover { transform: translateY(-1px); }
.ideas-fab__hint {
    color: rgba(200, 220, 255, 0.55);
    font-size: 0.7rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .ideas-flow__steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ideas-flow__steps::before { display: none; }
    .ideas-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ideas-spotlight__card { grid-template-columns: 1fr; }
    .ideas-leader-row { grid-template-columns: 40px 1fr auto; }
    .ideas-leader-cat { display: none; }
}
@media (max-width: 600px) {
    .ideas-stats-grid { grid-template-columns: 1fr; }
    .ideas-flow__steps { grid-template-columns: 1fr; }
    .ideas-fab { bottom: 16px; right: 16px; }
    .ideas-fab__main { padding: 12px 18px; font-size: 13px; }
    .ideas-fab__panel { width: calc(100vw - 32px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ideas-hero-bulb,
    .ideas-activity__track,
    .ideas-fab__main,
    .ideas-ai-prompt__bot,
    .ideas-live-pill::before {
        animation: none !important;
    }
}

/* ---------- Simplified portal layout overrides ----------
   Centers the hero content (defaults cramped it into a 380px left column)
   and hides the auto-injected ::before badge to avoid duplicates. */
.ideas-hero .service-hero-content::before { display: none !important; }

.ideas-hero .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.ideas-hero .service-hero-content {
    text-align: center !important;
    max-width: 760px !important;
    padding-left: 0 !important;
    margin: 0 auto !important;
}

.ideas-hero .service-hero-content p { margin: 0 auto !important; }

.ideas-hero .ideas-hero-ctas { justify-content: center; }

