.roadmap-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* THE GLOWING THREAD */
.roadmap-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.thread-glow {
    fill: none;
    stroke: #00f2ff;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px #00f2ff);
    stroke-dasharray: 10; /* Gives it a "data transfer" look */
}
.b_thread-glow {
    fill: none;
    stroke: #e7be36;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px #e7be36);
    stroke-dasharray: 10; /* Gives it a "data transfer" look */
}
.j_thread-glow {
    fill: none;
    stroke: #ee4bcb;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px #ee4bcb);
    stroke-dasharray: 10; /* Gives it a "data transfer" look */
}
/* START HUB (Brain) */
.brain-hub {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 5;
}
.hex-inner i {
    font-size: 50px;
}
.hex-outer {
    width: 120px;
    height: 130px;
    background: #00f2ff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}
.b_hex-outer{
    width: 120px;
    height: 130px;
    background: #e7be36;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}
.j_hex-outer{
    width: 120px;
    height: 130px;
    background: #ee4bcb;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}
.hex-inner {
    width: 110px; height: 120px;
    background: #0b0f1a;
    clip-path: inherit;
    display: flex; align-items: center; justify-content: center;
}

/* ZIG-ZAG LAYOUT */
.stages-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    z-index: 2;
    position: relative;
}

.stage-node {
    display: flex;
    width: 100%;
}

.align-right { justify-content: flex-end; padding-right: 50px; }
.align-left { justify-content: flex-start; padding-left: 50px; }

.node-wrapper {
    width: 400px; /* Adjust to match your image aspect ratio */
    position: relative;
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.node-wrapper:hover {
    transform: scale(1.03);
}

.stage-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.lock-overlay {
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 24px;
    text-shadow: 0 0 10px #00f2ff;
}
.stage_1 {
    position: relative;
    right: 82px;
    top: 5px;
}
.stage_2 {
    position: relative;
    left: 83px;
    top: 20px;
}
.stage_3 {
    position: relative;
    top: 31px;
    left: 117px;
}
.stage_4 {
    position: relative;
    top: 31px;
    right: 100px;
}
.stage_5 {
    position: relative;
    top: 31px;
    right: 238px;
}
.stage_6 {
    position: relative;
    top: 31px;
    right: 100px;
}
.b_stage_1 {
    position: relative;
    right: 82px;
    top: 5px;
}
.b_stage_2 {
    position: relative;
    left: 83px;
    top: 20px;
}
.b_stage_3 {
    position: relative;
    top: 31px;
    right: 90px;
}
.b_stage_4 {
    position: relative;
    top: 31px;
    left: 70px;
}
.b_stage_5 {
    position: relative;
    top: 31px;
    right: 80px;
}
.b_stage_6 {
    position: relative;
    top: 31px;
    left: 35px;
}
.b_stage_7 {
    position: relative;
    top: 31px;
    right: 100px;
}
.b_stage_8 {
    position: relative;
    top: 31px;
    left: 25px;
}
.j_stage_1 {
    position: relative;
    right: 82px;
    top: 5px;
}
.j_stage_2 {
    position: relative;
    left: 83px;
    top: 20px;
}
.j_stage_3 {
    position: relative;
    top: 31px;
    left: 117px;
}
.j_stage_4 {
    position: relative;
    top: 31px;
    right: 100px;
}
.j_stage_5 {
    position: relative;
    top: 31px;
    right: 238px;
}
.j_stage_6 {
    position: relative;
    top: 31px;
    right: 100px;
}
/* LOCKED = BLACK & WHITE */
.stage-node.locked .stage-img {
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.5;
}

/* COMPLETED = LIGHT GLOW */
.stage-node.completed .stage-img {
    filter: none;
}

/* ACTIVE = STRONG GLOW */
.stage-node.active .stage-img {
    filter: none;
    transform: scale(1.05);
}

/* LOCK ICON HIDDEN DEFAULT */
.lock-overlay {
    display: none;
}

/* SHOW LOCK ONLY WHEN LOCKED */
.stage-node.locked .lock-overlay {
    display: block;
}
/* Container & Glass Effect */
.career-setup-container {
    background: rgba(17, 23, 34, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(231, 54, 228, 0.2); /* Soft Gold Border */
    border-radius: 20px;
    padding: 40px;
    max-width: 650px;
    margin: 40px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.setup-header {
    text-align: center;
    margin-bottom: 35px;
}

.setup-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Form Styling */
.setup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ee4bcb;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs, Textarea, Select */
.form-group input, 
.form-group textarea, 
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: #ee4bcb;
    background: rgba(231, 54, 181, 0.05);
    box-shadow: 0 0 15px rgba(231, 54, 228, 0.2);
}

/* Specific Select Styling for dark mode */
select option {
    background: #111722;
    color: #fff;
}

/* Submit Button with Gold Glow */
.btn-submit-glow {
    margin-top: 10px;
    background: linear-gradient(135deg, #ee4bcb 0%, #a7308d 100%);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(231, 54, 216, 0.3);
}

.btn-submit-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(216, 54, 231, 0.5);
    filter: brightness(1.1);
}
/* --- VERIFICATION CARD DESIGN --- */

.verification-card {
    max-width: 500px;
    margin: 60px auto;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(231, 54, 216, 0.3);
    background: rgba(10, 15, 25, 0.9);
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.status-subtext {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Radar Animation */
.radar-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-core {
    font-size: 32px;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(231, 54, 216, 0.5));
}

.radar-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ee4bcb;
    border-radius: 50%;
    animation: radar-pulse 2s infinite ease-out;
    opacity: 0;
}

@keyframes radar-pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

/* Auth Boxes */
.auth-box {
    margin-top: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeIn 0.5s ease-out;
}

.auth-box h3 {
    color: #ee4bcb;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.auth-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Icon Styles */
.success-icon, .pending-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reusing your Glow Button */
.btn-submit-glow {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    background: linear-gradient(135deg, #ee4bcb 0%, #b81dae 100%);
    color: #000;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(231, 54, 216, 0.3);
    transition: 0.3s;
}

.btn-submit-glow:hover {
    box-shadow: 0 0 35px rgba(231, 54, 225, 0.6);
    transform: scale(1.02);
}
/* Card Container */
.elite-bootcamp-card {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(17, 23, 34, 0.9);
    border: 1px solid rgba(54, 210, 231, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Premium Badge */
.premium-badge {
    display: inline-block;
    background: rgba(231, 190, 54, 0.1);
    color: #00f2ff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid #00f2ff;
    margin-bottom: 15px;
}

/* Status Bar Layout */
.status-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item {
        text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item .label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
        position: relative;
    display: block;
}

.status-item .value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.status-item:last-child {
    border-right: none;
}
/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: 0.3s ease;
}

.feature-card:hover {
    background: rgba(231, 190, 54, 0.05);
}

.icon-wrap {
    font-size: 24px;
    background: rgba(231, 190, 54, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #00f2ff;
}

.feat-text strong {
    display: block;
    color: #00f2ff;
    font-size: 15px;
}

.feat-text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Button - Coming Soon State */
.btn-disabled-gold {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px dashed rgba(54, 213, 231, 0.4);
    color: #00f2ff;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
    transition: 0.3s;
}

.gold-pulse {
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0% { opacity: 0.6; }
    50% { opacity: 1; color: #00f2ff; }
    100% { opacity: 0.6; }
}
/* --- FOUNDER EVENT CARD STYLES --- */

.founder-event-card {
    max-width: 700px;
    margin: 50px auto;
    padding: 50px;
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid rgba(231, 190, 54, 0.25);
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Exclusivity Tag */
.exclusivity-tag {
    display: inline-block;
    color: #e7be36;
    border: 1px solid #e7be36;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Event Data Strip */
.event-data-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin: 35px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-point {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.data-point:last-child {
    border-right: none;
}

.data-label {
    display: block;
    font-size: 10px;
    color: rgba(231, 190, 54, 0.6);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.data-value {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}

/* Benefits Layout */
.benefit-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: 0.3s ease;
}

.benefit-item:hover {
    background: rgba(231, 190, 54, 0.04);
}

.benefit-icon {
    font-size: 24px;
    background: rgba(231, 190, 54, 0.1);
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #e7be36;
}

.benefit-content strong {
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Coming Soon Button Styling */
.btn-founder-lock {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 2px dashed rgba(231, 190, 54, 0.4);
    color: #e7be36;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

/* Pulsing "TBA" Text */
.gold-glimmer {
    animation: textGlimmer 2s infinite ease-in-out;
}

@keyframes textGlimmer {
    0%, 100% { color: #fff; text-shadow: none; }
    50% { color: #e7be36; text-shadow: 0 0 10px rgba(231, 190, 54, 0.5); }
}
@media (max-width: 992px) {
    .form-row {
        display: flex;
        flex-direction: column;
    }
    .stage_1 {
        position: relative;
        left: 45px;
        top: 65px;
    }
    .stage_2 {
        position: relative;
        left: 75px;
        top: 65px;
    }
    .stage_3 {
        position: relative;
        top: 65px;
        left: -30px;
    }
    .stage_4 {
        position: relative;
        top: 65px;
        right: 70px;
    }
    .stage_5 {
        position: relative;
        top: 65px;
        left: 40px;
    }
    .stage_6 {
        position: relative;
        top: 95px;
        left: 60px;
    }
    .b_stage_1 {
        position: relative;
        left: 20px;
        top: 55px;
    }
    .b_stage_2 {
        position: relative;
        left: 75px;
        top: 55px;
    }
    .b_stage_3 {
        position: relative;
        top: 55px;
        left: 35px;
    }
    .b_stage_4 {
        position: relative;
        top: 55px;
        left: -65px;
    }
    .b_stage_5 {
        position: relative;
        top: 55px;
        right: 80px;
    }
    .b_stage_6 {
        position: relative;
        top: 55px;
        left: -20px;
    }
    .b_stage_7 {
        position: relative;
        top: 55px;
        left: 70px;
    }
    .b_stage_8 {
        position: relative;
        top: 55px;
        left: 60px;
    }
    .j_stage_1 {
        position: relative;
        left: 20px;
        top: 55px;
    }
    .j_stage_2 {
        position: relative;
        left: 75px;
        top: 55px;
    }
    .j_stage_3 {
        position: relative;
        top: 55px;
        left: -30px;
    }
    .j_stage_4 {
        position: relative;
        top: 55px;
        right: 70px;
    }
    .j_stage_5 {
        position: relative;
        top: 55px;
        left: 40px;
    }
    .j_stage_6 {
        position: relative;
        top: 85px;
        left: 60px;
    }
    .b_hex-outer,
    .j_hex-outer,
    .hex-outer {
        width: 60px;
        height: 65px;
    }
    .hex-inner {
        width: 55px;
        height: 60px;
    }
    .hex-inner i {
        font-size: 25px;
    }
}
