@import url('./common.css');

/* ===========================================
   VARIABLES
   =========================================== */
:root {
    --signup-primary: #ff6b6b;
    --signup-secondary: #4ecdc4;
    --signup-accent: #764ba2;
    --signup-success: #4ecdc4;
    --signup-warning: #ffd93d;
    --signup-error: #ff6b6b;
    --signup-bg: #0b0f19;
    --signup-surface: #1a1f2e;
    --signup-card: rgba(30, 35, 50, 0.9);
}

/* ===========================================
   PARTICLES BACKGROUND
   =========================================== */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===========================================
   BODY & MAIN
   =========================================== */
body {
    font-family: "Inter", system-ui, sans-serif;
    background: linear-gradient(135deg, var(--signup-bg) 0%, #1a1f2e 50%, #0d1117 100%);
    color: var(--text-white);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse-glow 8s ease-in-out infinite alternate;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: pulse-glow 10s ease-in-out infinite alternate-reverse;
    z-index: 0;
}

@keyframes pulse-glow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.1) translate(20px, -20px); opacity: 0.8; }
}

.signup-main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 60px;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo i {
    color: var(--signup-primary);
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--text-white);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    font-size: 1.5rem;
    padding: 1rem 2rem;
}

/* ===========================================
   PROGRESS STEPS
   =========================================== */
.signup-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--signup-primary), var(--signup-secondary));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Step */
.progress-step.active .step-icon {
    background: linear-gradient(135deg, var(--signup-primary), var(--signup-accent));
    border-color: transparent;
    color: white;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
    animation: step-pulse 2s ease-in-out infinite;
}

.progress-step.active .step-label {
    color: var(--text-white);
}

@keyframes step-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 0 35px rgba(255, 107, 107, 0.5); }
}

/* Completed Step */
.progress-step.completed .step-icon {
    background: var(--signup-secondary);
    border-color: transparent;
    color: var(--signup-bg);
}

.progress-step.completed .step-label {
    color: var(--signup-secondary);
}

.progress-step.completed + .progress-line::after {
    width: 100%;
}

/* ===========================================
   SIGNUP CONTAINER
   =========================================== */
.signup-container {
    width: 100%;
    max-width: 480px;
    position: relative;
}

.signup-step {
    display: none;
    background: var(--signup-card);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: step-slide-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.signup-step.active {
    display: block;
}

@keyframes step-slide-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.signup-step.slide-out {
    animation: step-slide-out 0.3s ease-out forwards;
}

@keyframes step-slide-out {
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* ===========================================
   STEP HEADER
   =========================================== */
.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--signup-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.step-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.5;
}

/* ===========================================
   INPUT STYLES
   =========================================== */
.step-content {
    margin-bottom: 2rem;
}

.input-group-fancy {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.fancy-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    font-size: 1rem;
    color: var(--text-white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fancy-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.fancy-input:focus {
    outline: none;
    border-color: var(--signup-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

.fancy-input:focus + .input-icon,
.input-group-fancy:focus-within .input-icon {
    color: var(--signup-primary);
}

.input-success {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--signup-success);
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.input-group-fancy.valid .input-success {
    opacity: 1;
}

.input-group-fancy.valid .fancy-input {
    border-color: rgba(78, 205, 196, 0.5);
}

.input-group-fancy.invalid .fancy-input {
    border-color: rgba(255, 107, 107, 0.5);
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.input-hint i {
    color: var(--signup-secondary);
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--text-white);
}

/* ===========================================
   PASSWORD STRENGTH
   =========================================== */
.password-strength {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.strength-bars {
    display: flex;
    gap: 6px;
    flex: 1;
}

.strength-bar {
    height: 4px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* Strength levels */
.password-strength.weak .strength-bar:nth-child(1) { background: var(--signup-error); }
.password-strength.fair .strength-bar:nth-child(1),
.password-strength.fair .strength-bar:nth-child(2) { background: var(--signup-warning); }
.password-strength.good .strength-bar:nth-child(1),
.password-strength.good .strength-bar:nth-child(2),
.password-strength.good .strength-bar:nth-child(3) { background: #9be36d; }
.password-strength.strong .strength-bar { background: var(--signup-success); }

.password-strength.weak .strength-label { color: var(--signup-error); }
.password-strength.fair .strength-label { color: var(--signup-warning); }
.password-strength.good .strength-label { color: #9be36d; }
.password-strength.strong .strength-label { color: var(--signup-success); }

/* Password Requirements */
.password-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.requirement i {
    font-size: 0.5rem;
    transition: all 0.3s ease;
}

.requirement.met {
    color: var(--signup-success);
}

.requirement.met i {
    font-size: 0.75rem;
}

.requirement.met i::before {
    content: '\f00c'; /* fa-check */
}

/* ===========================================
   BUTTONS
   =========================================== */
.step-actions {
    display: flex;
    gap: 1rem;
}

.btn-next, .btn-create {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--signup-primary), #ee5a6f);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-next:hover:not(:disabled), .btn-create:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.btn-next:active:not(:disabled), .btn-create:active:not(:disabled) {
    transform: translateY(0);
}

.btn-next:disabled, .btn-create:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-next i, .btn-create i {
    transition: transform 0.3s ease;
}

.btn-next:hover:not(:disabled) i,
.btn-create:hover:not(:disabled) i {
    transform: translateX(4px);
}

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.btn-back i {
    transition: transform 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-4px);
}

/* ===========================================
   SUCCESS ANIMATION
   =========================================== */
.success-header {
    padding-top: 1rem;
}

.success-animation {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--signup-secondary), #6dd5c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--signup-bg);
    position: relative;
    z-index: 2;
    animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--signup-secondary);
    border-radius: 50%;
    animation: ring-expand 2s ease-out infinite;
}

.ring:nth-child(1) { animation-delay: 0s; }
.ring:nth-child(2) { animation-delay: 0.5s; }
.ring:nth-child(3) { animation-delay: 1s; }

@keyframes ring-expand {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.success-title {
    color: var(--signup-secondary) !important;
    -webkit-text-fill-color: var(--signup-secondary) !important;
}

/* ===========================================
   REVIEW CARD
   =========================================== */
.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-item:last-child {
    border-bottom: none;
}

.review-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--signup-primary);
}

.review-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-value {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
}

.review-edit {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-edit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

/* ===========================================
   WHAT'S NEXT
   =========================================== */
.whats-next {
    background: rgba(78, 205, 196, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
}

.whats-next-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--signup-secondary);
    margin-bottom: 1rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.next-step-number {
    width: 24px;
    height: 24px;
    background: rgba(78, 205, 196, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--signup-secondary);
}

.next-step-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   LOADING STATE
   =========================================== */
.signup-loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--signup-card);
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
}

.signup-loading.active {
    display: flex;
}

.loading-spinner-fancy {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.spinner-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    border-top-color: var(--signup-primary);
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-right-color: var(--signup-secondary);
    animation: spin 1.5s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-bottom-color: var(--signup-accent);
    animation: spin 2s linear infinite;
}

.spinner-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--signup-primary);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===========================================
   AUTH LINK & TRUST BADGES
   =========================================== */
.auth-link {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.auth-link a {
    color: var(--signup-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.auth-link a:hover {
    color: var(--signup-secondary);
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--signup-secondary);
}

/* ===========================================
   CONFETTI
   =========================================== */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

.confetti.square { border-radius: 2px; }
.confetti.circle { border-radius: 50%; }
.confetti.triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid currentColor;
    background: none !important;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(-100%) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .signup-main {
        padding: 90px 16px 40px;
    }
    
    .signup-progress {
        gap: 0;
    }
    
    .progress-line {
        width: 40px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .signup-step {
        padding: 2rem 1.5rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-subtitle {
        font-size: 0.9rem;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .btn-back {
        order: 1;
    }
    
    .btn-next, .btn-create {
        order: 0;
    }
    
    .password-requirements {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .signup-progress {
        padding: 0 0.5rem;
    }
    
    .progress-line {
        width: 30px;
    }
    
    .step-label {
        display: none;
    }
    
    .signup-step {
        padding: 1.5rem 1.25rem;
    }
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .step-icon,
    .signup-step,
    .success-circle,
    .ring,
    .spinner-ring,
    body::before,
    body::after {
        animation: none !important;
    }
    
    .progress-line::after {
        transition: none !important;
    }
}
