/* import inter instead and we will ise it for the font family */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');



body {
    background: #000000;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Smooth scrolling */
* {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Glass sidebar styling */
.glass-sidebar {
    background: transparent;
    backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}


.sidebar-open {
    transform: translateX(0) !important;
}

/* Clean button styling */
.sidebar-btn {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    transition: all 0.2s ease;
}

.sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Icon button for collapsed state */
.icon-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.05);
}


/* Idea item styling */
.idea-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.idea-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.idea-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Empty state styling */
.empty-state {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Roadmap container */
.roadmap-container {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

/* Fix sidebar scrolling */
.glass-sidebar {
    background: transparent;
    backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);

    /* Add this */
    overflow-y: auto;
    /* Add this */
    z-index: 50;
    /* Add this */
}

/* Technical Breakdown Glass Layers */
.glass-stack-4 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 50%, rgba(255, 255, 255, 0.015) 100%);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.glass-stack-3 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.glass-stack-2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(24px);
    border: 2px solid rgba(255, 255, 255, 0.18);
}



.glass-main-breakdown {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.07) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.elegant-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06), transparent);
    height: 1px;
}

.tree-structure {
    font-family: 'Inter', monospace;
}

.elegant-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06), transparent);
    height: 1px;
}


/* Fix for auth checking state */
.auth-checking {
    opacity: 0;
    pointer-events: none;
}

.auth-verified {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}


/* Enhanced glass form with unified styling */
.glass-form {
    background: transparent;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-form:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Progressive reveal animations */
.form-step {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0;
    overflow: hidden;
    margin: 0;
}

.form-step.active {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 1.5rem;
}

.form-step:first-child.active {
    margin-top: 0;
}

/* Unified input styling */
.input-field {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.input-field:focus {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.input-field.completed {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
}

.input-field:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Shattered glass submit button */
.shattered-button {
    position: relative;
    background: transparent;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    overflow: visible;
}

.shattered-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.shattered-button:hover::before {
    opacity: 1;
}

/* Glass fragments for submit button */
.glass-fragment {
    position: absolute;
    background: linear-gradient(var(--gradient-angle), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.8;
    transform: translate(var(--offset-x), var(--offset-y)) rotate(var(--rotation));
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shattered-button:hover .glass-fragment {
    transform: translate(calc(var(--offset-x) * 0.5), calc(var(--offset-y) * 0.5)) rotate(calc(var(--rotation) * 0.5));
    opacity: 0.9;
}

/* Crack lines for submit button */
.crack-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), transparent);
    height: 1px;
    opacity: 0.6;
    transform-origin: left center;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    animation: crackShimmer 3s ease-in-out infinite;
}

@keyframes crackShimmer {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

.shattered-button:hover .crack-line {
    opacity: 0.9;
    animation-duration: 1.5s;
}

/* Edit button styling */
.edit-btn {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.edit-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Subtle crack lines on form steps */
.form-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-step.active::before {
    opacity: 1;
}

.floating-bg {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.tool-card {
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Progressive reveal animations */
.form-step {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0;
    overflow: hidden;
    margin: 0;
}

.form-step.active {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 1.5rem;
}

.form-step:first-child.active {
    margin-top: 0;
}

/* Unified input styling */
.input-field {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.input-field:focus {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.input-field.completed {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
}

.input-field.error {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.02);
}

/* Shattered glass submit button */
.shattered-button {
    position: relative;
    background: transparent;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    overflow: visible;
}

.shattered-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.shattered-button:hover::before {
    opacity: 1;
}

/* Glass fragments for submit button */
.glass-fragment {
    position: absolute;
    background: linear-gradient(var(--gradient-angle), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.8;
    transform: translate(var(--offset-x), var(--offset-y)) rotate(var(--rotation));
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shattered-button:hover .glass-fragment {
    transform: translate(calc(var(--offset-x) * 0.5), calc(var(--offset-y) * 0.5)) rotate(calc(var(--rotation) * 0.5));
    opacity: 0.9;
}

/* Crack lines for submit button */
.crack-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), transparent);
    height: 1px;
    opacity: 0.6;
    transform-origin: left center;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    animation: crackShimmer 3s ease-in-out infinite;
}

@keyframes crackShimmer {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

.shattered-button:hover .crack-line {
    opacity: 0.9;
    animation-duration: 1.5s;
}

/* Edit button styling */
.edit-btn {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.edit-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Password strength indicator */
.strength-indicator {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.strength-bar {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.strength-weak {
    background: #ef4444;
    width: 25%;
}

.strength-fair {
    background: #f59e0b;
    width: 50%;
}

.strength-good {
    background: #10b981;
    width: 75%;
}

.strength-strong {
    background: #22c55e;
    width: 100%;
}

/* Validation message */
.validation-msg {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    transition: all 0.2s ease;
}

.validation-msg.error {
    color: rgba(239, 68, 68, 0.8);
}

.validation-msg.success {
    color: rgba(255, 255, 255, 0.8);
}

/* Progress indicator - unified with landing page */
.progress-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.progress-dot.completed {
    background: rgba(255, 255, 255, 0.6);
}

/* Subtle crack lines on form steps */
.form-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-step.active::before {
    opacity: 1;
}

.sidebar-btn {
    transition: all 0.2s ease;
}

.sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-btn.active {
    background: rgba(255, 255, 255, 0.15);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}


 .chaos-wallpaper {
        word-wrap: break-word;
        line-height: 2;
        letter-spacing: 0.05em;
    }
    
    .chaos-block {
        margin-bottom: 1rem;
    }