.stepper-outer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box
}

.stepper-indicator-row {
    display: flex;
    align-items: center;
    padding: 10px 6px 28px
}

.stepper-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f0f0f0;
    color: #acacac;
    font-weight: 600;
    font-size: .85rem;
    transition: background .3s, color .3s
}

.stepper-dot.active,
.stepper-dot.complete {
    background: #091434;
    color: #fff
}

.stepper-connector {
    flex: 1;
    height: 3px;
    margin: 0 10px;
    border-radius: 2px;
    background: #f0f0f0;
    overflow: hidden
}

.stepper-connector-fill {
    height: 100%;
    width: 0;
    background: #091434;
    transition: width .4s ease
}

.stepper-content {
    position: relative;
    flex: 1;
    min-height: 165px
}

.stepper-step {
    position: absolute;
    inset: 0;
    padding: 0 6px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease
}

.stepper-step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto
}

.stepper-step h3 {
    margin: 0 0 14px;
    color: #091434
}

.stepper-step .input-container {
    width: 100%
}

.stepper-step textarea {
    width: 100%;
    min-height: 80px
}

#stepper-error-label {
    display: block;
    margin: 8px 6px 0;
    font-size: .85rem
}

.stepper-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6px 6px;
    margin-top: auto
}

.stepper-back-button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    color: #7c8594;
    padding: 8px 4px;
    transition: color .25s
}

.stepper-back-button:hover {
    color: #091434
}

.stepper-next-button {
    margin-left: auto;
    border: none;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: #091434;
    border-radius: 26px;
    padding: 10px 26px;
    transition: background .3s
}

.stepper-next-button:hover {
    background: #142a5c
}

.landing-buttons-container {
    gap: 12px
}

.jarvis-launch-button {
    border: none;
    background-color: #25D366;
    cursor: pointer;
    transition: background-color .25s, transform .2s
}

.jarvis-launch-button:hover {
    background-color: #1ebd5a;
    transform: translateY(-1px)
}

.jarvis-launch-button:active {
    transform: translateY(0)
}

.jarvis-launch-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071026, #0d1b46 55%, #0a1636);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    overflow: hidden
}

.jarvis-launch-overlay.show {
    opacity: 1;
    pointer-events: auto
}

.jarvis-launch-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0
}

.jarvis-launch-overlay.show .jarvis-launch-content {
    animation: jarvis-content-fade 1.15s ease forwards
}

.jarvis-launch-hex {
    width: 72px;
    height: 72px;
    overflow: visible
}

.jarvis-launch-hex-outline {
    fill: none;
    stroke: #25D366;
    stroke-width: 3;
    stroke-linejoin: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300
}

.jarvis-launch-overlay.show .jarvis-launch-hex-outline {
    animation: jarvis-hex-draw 1s cubic-bezier(.4, 0, .2, 1) forwards
}

.jarvis-launch-hex-glow {
    fill: #25D366;
    opacity: 0;
    filter: blur(14px)
}

.jarvis-launch-overlay.show .jarvis-launch-hex-glow {
    animation: jarvis-hex-glow 1.1s ease forwards
}

.jarvis-launch-label {
    position: relative;
    color: #f2f6f4;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    letter-spacing: .05em;
    font-size: 1.05rem
}

.jarvis-launch-progress {
    width: 170px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .14);
    overflow: hidden
}

.jarvis-launch-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, .6)
}

.jarvis-launch-overlay.show .jarvis-launch-progress-fill {
    animation: jarvis-progress-fill 1.05s cubic-bezier(.4, 0, .2, 1) forwards
}

.jarvis-launch-dots::after {
    content: "";
    animation: jarvis-dots 1.1s steps(4, end) infinite
}

@keyframes jarvis-content-fade {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    18% {
        opacity: 1;
        transform: translateY(0)
    }

    82% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes jarvis-hex-draw {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes jarvis-hex-glow {
    0% {
        opacity: 0
    }

    55% {
        opacity: .4
    }

    100% {
        opacity: .18
    }
}

@keyframes jarvis-progress-fill {
    to {
        width: 100%
    }
}

@keyframes jarvis-dots {
    0% {
        content: ""
    }

    25% {
        content: "."
    }

    50% {
        content: ".."
    }

    75% {
        content: "..."
    }

    100% {
        content: ""
    }
}
