/* Premium Responsive Roadmap Widget Styling */
.roadmap-container-b449f9b0 {
    padding: 60px 40px;
    background-color: #0c0f12;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 12px;
}

/* Header & Subtitle Styling */
.roadmap-header-b449f9b0 {
    margin-bottom: 50px;
}

.roadmap-subtitle-b449f9b0 {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00ffcc;
    border: 1px dashed #00ffcc;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.roadmap-subtitle-b449f9b0::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #00ffcc;
    margin-right: 8px;
    border-radius: 1px;
}

.roadmap-title-b449f9b0 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
    color: #ffffff;
}

/* Layout Columns */
.roadmap-layout-b449f9b0 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Roadmap curvy path SVG representation */
.roadmap-svg-wrapper-b449f9b0 {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.roadmap-svg-b449f9b0 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Dynamic glowing pins placed along the path */
.roadmap-pin-b449f9b0 {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.pin-head-b449f9b0 {
    width: 16px;
    height: 16px;
    background-color: #ff5a36;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
    top: -12px;
    box-shadow: 0 0 15px #ff5a36;
    animation: pinFloat-b449f9b0 2s ease-in-out infinite alternate;
}

.pin-dot-b449f9b0 {
    width: 8px;
    height: 8px;
    background-color: #00ffcc;
    border-radius: 50%;
    position: absolute;
    bottom: -4px;
    box-shadow: 0 0 10px #00ffcc;
}

@keyframes pinFloat-b449f9b0 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }
    100% {
        transform: rotate(-45deg) translate(2px, -2px);
    }
}

/* Steps list styling */
.roadmap-list-b449f9b0 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.roadmap-step-b449f9b0 {
    display: flex;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roadmap-step-b449f9b0:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-meta-b449f9b0 {
    min-width: 90px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-cue-b449f9b0 {
    font-size: 13px;
    font-weight: 700;
    color: #ff5a36;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.step-badge-b449f9b0 {
    font-size: 10px;
    font-weight: 600;
    color: #8e96a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-body-b449f9b0 {
    flex-grow: 1;
}

.step-title-b449f9b0 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
    line-height: 1.3;
}

.step-desc-b449f9b0 {
    font-size: 13px;
    line-height: 1.6;
    color: #8e96a0;
    margin: 0;
}

/* Mobile responsive layout */
@media (max-width: 768px) {
    .roadmap-layout-b449f9b0 {
        grid-template-columns: 1fr;
    }
    .roadmap-svg-wrapper-b449f9b0 {
        display: none; /* Hide interactive SVG road map representation on mobile to save layout spacing, focusing on top-to-bottom steps */
    }
    .roadmap-container-b449f9b0 {
        padding: 30px 20px;
    }
    .roadmap-title-b449f9b0 {
        font-size: 30px;
    }
}
